1: class Class1
2: {
3: int total = 0;
4: public static void main( String[] args )
5: {
6: doIt();
7: }
8: void doIt()
9: {
10: for ( int i = 0; i < 5; i++ ) total += i;
11: System.out.println( total );
12: }
13: }
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать