Skip to content

Instantly share code, notes, and snippets.

@fabiancarlos
Created May 13, 2012 22:55
Show Gist options
  • Save fabiancarlos/2690653 to your computer and use it in GitHub Desktop.
Save fabiancarlos/2690653 to your computer and use it in GitHub Desktop.
5 pessoas declaram suas cores favoritas
import java.util.ArrayList;
import java.util.Iterator;
import javax.swing.JOptionPane;
public class Pessoa {
public static void main(String[] args) {
String[] pessoas = new String[5];
String nome = "";
int cor = 0;
for (int i = 0; i < pessoas.length; i++) {
nome = JOptionPane.showInputDialog("Nome: ");
cor = Integer.parseInt(JOptionPane.showInputDialog(" Qual a cor favorita? \n" + " 1 - Verde \n"
+ " 2 - Vermelho \n" + " 3 - Amarelo \n" + " 4 - Azul" + "5 - Roxo" ));
switch (cor) {
case 1:
pessoas[i] = nome + " prefere cor Verde";
continue;
case 2:
pessoas[i] = nome + " prefere cor Vermelho";
continue;
case 3:
pessoas[i] = nome + " prefere cor Amarelo";
continue;
case 4:
pessoas[i] = nome + " prefere cor Azul";
continue;
case 5:
pessoas[i] = nome + " prefere cor Roxo";
continue;
default:
pessoas[i] += "A cor preferida de " + nome + " não é existe nas opções";
continue;
}
}
for (int i = 0; i < pessoas.length; i++) {
System.out.println(pessoas[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment