Advertisement
Noneatme

Untitled

Aug 30th, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. public class Zahlen
  2. {
  3.     public static void main(String[] args)
  4.     {
  5.         int count = 0;
  6.        
  7.         while(count < 10)
  8.         {
  9.             for(int i = 0; i <= count; i++)
  10.             {
  11.                 System.out.print(i);
  12.             }
  13.             System.out.println();
  14.             count++;
  15.         }
  16.        
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement