Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5ab30c79c71f9ca2069f83e7faa96c77b87ce611 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package p;

class A {
	void f(){
		for (int i= 0; i < 5; i++) {
			for (int k= 0, p= 17; p < i; k++) {
				String temp= i++ + " " + k;
				System.out.println(temp);
			}
		}
	}
}

Back to the top