fork download
  1. import java.util.Scanner;
  2. class SEP_06_exe2_p1 {
  3. public static void main(String args[]) {
  4. int[] x = new int[10];
  5. int y = 0;
  6. Scanner input = new Scanner(System.in);
  7. do {
  8. System.out.print("Digite o " + (y + 1) + "ยบ valor: ");
  9. x[y] = input.nextInt();
  10. y++; //incrementa 1 no y <== estava errado veja nota abaixo
  11. } while (y < 10);
  12. y = 0;
  13. do {
  14. System.out.println(x[y]);
  15. y++;
  16. } while (y < 10);
  17. }
  18. }
  19.  
  20. //https://pt.stackoverflow.com/q/35010/101
Success #stdin #stdout 0.07s 4386816KB
stdin
1
2
3
4
5
6
7
8
9
10
stdout
Digite o 1º valor: Digite o 2º valor: Digite o 3º valor: Digite o 4º valor: Digite o 5º valor: Digite o 6º valor: Digite o 7º valor: Digite o 8º valor: Digite o 9º valor: Digite o 10º valor: 1
2
3
4
5
6
7
8
9
10