I am doing a simple exercise but it shows me some error icons
Can you explain to me what is being done wrong, I am following all the correct steps, I do not observe that there are code syntax errors.
This is the code
package exampleswitch;
import javax.swing.*;
public class ExampleSwitch {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
char cuestionario;
cuestionario = 'Tema:';
int semana;
semana = 1;
switch(semana){
case 1:
cuestionario += 'Introducción a la programación';
break;
case 2:
cuestionario += 'Secuenciación y selección';
}
}
}