fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. int linhas = 3,
  13. registros = 2,
  14. temp = 1;
  15.  
  16. for (int i = 1; i <= registros; i++) {
  17.  
  18. for(int j = 0; j < linhas; j++){
  19. System.out.println("Linha: " + (temp++));
  20. }
  21. System.out.println(" Registro: " + i);
  22. }
  23. }
  24. }
Success #stdin #stdout 0.07s 3359744KB
stdin
2
3
stdout
Linha: 1
Linha: 2
Linha: 3
 Registro: 1
Linha: 4
Linha: 5
Linha: 6
 Registro: 2