Java
1 –
importjavax.swing.JOptionPane;
publicclass Exercicio1 { publicstaticvoid main(String[] args) { String aString = JOptionPane.showInputDialog("Digite o Numero:"); intNumero = Integer.parseInt(aString); intdobro = Numero * 2; JOptionPane.showMessageDialog(null, dobro); }
}
2 –
importjavax.swing.JOptionPane;
publicclass Exercicio2 { publicstaticvoid main(String args[]) {
String Aluno, num1, num2; int Nota1, Nota2, Media;
Aluno = JOptionPane.showInputDialog("Digite o nome do aluno"); num1 = JOptionPane.showInputDialog("Digite Primeira Nota"); Nota1 = Integer.parseInt(num1); num2 = JOptionPane.showInputDialog("Digite Segunda Nota"); Nota2 = Integer.parseInt(num2); Media = (Nota1 + Nota2) / 2; JOptionPane.showMessageDialog(null, "A Media do Aluno " + Aluno + " foi: " + Media);
}
}
3 –
importjavax.swing.JOptionPane;
publicclass Exercicio3 {
publicstaticvoid main(String[] args) {
for (int i = 0; i <= 5; i = i + 1) {
String Nome, Matricula;
Nome = JOptionPane.showInputDialog("Informe nome do aluno"); JOptionPane.showMessageDialog(null, Nome);
Matricula = JOptionPane.showInputDialog("Informe a matrícula"); JOptionPane.showMessageDialog(null, Matricula);
JOptionPane.showMessageDialog(null, "Bem-Vindo " + Nome+ ", à aula de Estrutura de dados suamatrícula é: "+ Matricula);
} }
}
4 –
publicclass Exercicio4 {
publicstaticvoid main(String[] args) {
intnumero = 0;
while (numero<= 20) {
if (numero % 2 == 0) {
System.out.println("Par");
}
else System.out.println("Impar");
numero = numero + 1;
}
}
}
“ExComplementaresEstagio01.1-GTI.pdf”
1 –
publicclass Exercicio1 { publicstaticvoid main (String [] args){ System.out.println("Hello World!"); }
}
3 –
importjavax.swing.JOptionPane;
publicclass Exercicio3