Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package EinmalEins;
  2. import javax.swing.JOptionPane;
  3.  
  4.  
  5.  
  6. /**
  7. *
  8. * @author Florian
  9. */
  10. public class EinmalEins {
  11.  
  12. /**
  13. * @param args the command line arguments
  14. */
  15. public static void main(String[] args) {
  16. int i,k;
  17. k=0;
  18. i=0;
  19. for (i=1;i<=10;i++)
  20. {
  21. for (k=1;k<=10;k++)
  22. {
  23. JOptionPane.showMessageDialog (null,i+"*"+k+"=" i*k);
  24. }
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement