Created
May 13, 2012 22:55
-
-
Save fabiancarlos/2690653 to your computer and use it in GitHub Desktop.
5 pessoas declaram suas cores favoritas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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