Boa Noite Pessoal … Novamente estou aqui para postar as duvidas que surgem durante o aprendizado … então depois de fazer os exercicios de java da apostila que estou estudando , vou postar os codigos para saber se estou errando em algo que eu não perceba , e verificar se a sintaxe está correta , quando executo os codigos o mesmo funciona, e mostra de acordo como pede na apostila .
import java.util.Scanner;
public class Exercicio4 {
public static void main (String[] args){
Scanner s = new Scanner(System.in);
System.out.println("Digite o primeiro nome");
String nome1 = s.nextLine();
System.out.println("Digite o segundo nome");
String nome2 = s.nextLine();
System.out.println("Digite o terceiro nome");
String nome3 = s.nextLine();
System.out.print(nome1+" "+" "+nome2+" "+nome3);
}
}
______________________________________________________________________________
import javax.swing.JOptionPane;
public class Exercicio5 {
public static void main(String[] args) {
String nome1 = JOptionPane.showInputDialog("Digite o primeiro nome");
String nome2 = JOptionPane.showInputDialog("Digite o segundo nome");
String nome3 = JOptionPane.showInputDialog("Digite o terceiro nome");
JOptionPane.showMessageDialog(null, nome1+" "+nome2+" "+nome3);
}
}
_______________________________________________________________________________
import java.util.Scanner;
public class Exercicio6 {
public static void main(String[] args) {
double media = 6;
Scanner s = new Scanner (System.in);
System.out.println("Digite a primeira nota?");
double nota1= s.nextDouble();
System.out.println("Digite a segunda nota?");
double nota2 = s.nextDouble();
System.out.println("Digite a terceira nota");
double nota3 = s.nextDouble();
media = (nota1+nota2+nota3)/3;
if (media >= 6){
System.out.println("Aluno Aprovado :-)"+"media ="+media);
} else{
System.out.println("Aluno Reprovado :-("+"media ="+media);
}
}
}
_______________________________________________________________________
import javax.swing.JOptionPane;
public class Exercicio7 {
public static void main(String[] args) {
double media = 6;
double nota1 = Double.parseDouble(JOptionPane.showInputDialog("Digite a Primeira Nota"));
double nota2 = Double.parseDouble(JOptionPane.showInputDialog("Digite a Segunda Nota"));
double nota3 = Double.parseDouble(JOptionPane.showInputDialog("Digite a Terceira Nota"));
media = (nota1 + nota2 + nota3)/3;
if (media >= 6){
JOptionPane.showMessageDialog(null,"Aluno Aprovado!"+"media ="+media);
} else{
JOptionPane.showMessageDialog(null,"Aluno Reprovado!"+"media ="+media);
}
}
}
__________________________________________________________________________________________
import javax.swing.JOptionPane;
public class Exercicio8 {
public static void main(String[] args) {
int numero ;
numero = Integer.parseInt(JOptionPane.showInputDialog("Digite um numero"));
if (numero == 0) {
JOptionPane.showMessageDialog(null, "Zero");
} else if (numero == 1) {
JOptionPane.showMessageDialog(null, "Um");
} else if (numero == 2) {
JOptionPane.showMessageDialog(null, "Dois");
} else if (numero == 3) {
JOptionPane.showMessageDialog(null, "Tres");
} else if (numero == 4) {
JOptionPane.showMessageDialog(null, "Quatro");
} else if (numero == 5) {
JOptionPane.showMessageDialog(null, "Cinco");
} else if (numero == 6) {
JOptionPane.showMessageDialog(null, "Seis");
} else if (numero == 7) {
JOptionPane.showMessageDialog(null, "Sete");
} else if (numero == 8) {
JOptionPane.showMessageDialog(null, "Oito");
} else if (numero == 9) {
JOptionPane.showMessageDialog(null, "Nove");
} else {
JOptionPane.showMessageDialog(null, "Numero Invalido !");
}
}
}
_________________________________________________________________________________________-
import java.util.Scanner;
public class Exercicio9{
public static void main(String[] args) {
int numero = 0;
Scanner s = new Scanner(System.in);
System.out.println("Digite um numero");
numero = s.nextInt();
switch (numero) {
case 0:
System.out.println("Zero");
break;
case 1:
System.out.println("Um");
break;
case 2:
System.out.println("Dois");
break;
case 3:
System.out.println("Tres");
break;
case 4:
System.out.println("Quatro");
break;
case 5:
System.out.println("Cinco");
break;
case 6:
System.out.println("Seis");
break;
case 7:
System.out.println("Sete");
break;
case 8:
System.out.println("Oito");
break;
case 9:
System.out.println("Nove");
break;
default:
System.out.println("Numero Invalido");
}
}
}
___________________________________________________________________________________
public class Exercicio10 {
public static void main(String[] args) {
int i = 0;
String nome = "Eduardo Alencar";
while (i < 100) {
System.out.println(i+"-"+nome);
i++;
}
}
}
____________________________________________________________________________________
public class Exercicio11 {
public static void main(String[] args) {
int i = 0;
String nome = "Eduardo Alencar";
do {
System.out.println(i + "-" + nome);
i++;
} while (i < 100);
}
}
_____________________________________________________________________________________
public class Exercicio12 {
public static void main(String[] args) {
String nome = "Eduardo Alencar";
for (int i = 0; i < 100; i++) {
System.out.println(i + "-" + nome);
}
}
}
_______________________________________________________________________________________
import java.util.Scanner;
public class Exercicio13 {
public static void main(String[] args) {
int i = 1;
int base = 0;
int expoente = 0;
int potencia = 0;
Scanner s = new Scanner(System.in);
System.out.println("Digite uma Potência: ");
base = s.nextInt();
expoente = s.nextInt();
if (expoente > i) {
potencia = base;
while (expoente != i) {
potencia = potencia * base;
i++;
}
System.out.println("Potência: " + potencia);
}
}
}
____________________________________________________________________________________
import java.util.Scanner;
public class Exercicio14 {
public static void main(String[] args) {
int i = 1;
int base = 0;
int expoente = 0;
int potencia = 0;
Scanner s = new Scanner(System.in);
System.out.println("Digite uma Potencia: ");
base = s.nextInt();
expoente = s.nextInt();
if (expoente > i) {
potencia = base;
do {
potencia = potencia * base;
i++;
} while (expoente != i);
System.out.println("Potência: " + potencia);
}
}
}
___________________________________________________________________________________
import java.util.Scanner;
public class Exercicio15 {
public static void main(String[] args) {
int i = 1;
int base = 0;
int expoente = 0;
int potencia = 0;
Scanner s = new Scanner(System.in);
System.out.println("Digite uma Potencia: ");
base = s.nextInt();
expoente = s.nextInt();
if (expoente > i) {
potencia = base;
}
for (int j = 1; expoente > j; j++) {
potencia = potencia * base;
}
System.out.println("Potência: " + potencia);
}
}
Desde já agradeço.