English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
Todas as categorias

Tipo:

res =JOptionPane.showInputDialog(" tudo bem?,s,n ?");
if(res == s){
JOptionPane.showMessageDialog(null," então beleza");
}
else
if(res == n)
JOptionPane.showMessageDialog(null," então va se ferrar");

2006-09-11 05:35:53 · 1 respostas · perguntado por Igor LPS 2 em Computadores e Internet Programação e Design

1 respostas

String s = "abc" ;

// mudando string para char

char[ ] ca = s.toCharArray();

// mudando char para string

String s = new String( ca );

2006-09-11 10:35:52 · answer #1 · answered by Anonymous · 1 0

fedest.com, questions and answers