Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 1a95f1f95ee864cdaed3fac0250d7f9e662ed121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import java.awt.*;

public class FormatTest
	{

	/************************************
	 * method_one
	 * 
	 * 		nothing special.
	 ************************************/

	public void method_one()
		{
		int i = 1;

		int j = 2;

		for ( i = 12; i < 100; i++ )
			{
			if ( i % 2 == 0 )
				System.out.println( "xx" );
			else
				System.out.println( "yy" );

			j = 0;
			}

		} // method_one

	} // class FormatTest

Back to the top