Java游戏高级编程!!很不错的!!!Java游戏高级编程!!很不错的

源代码在线查看: ex2.java

软件大小: 1205 K
上传用户: invill
关键词: Java 高级编程
下载地址: 免注册下载 普通下载 VIP

相关代码

				     public class  Ex2
				     //////////////////////////////////////////////////////////////////////
				     // Start of Ex2
				     //////////////////////////////////////////////////////////////////////
				     {
				
				     int  x, y, i;
				
				     public void  procedure ( )
				     //////////////////////////////////////////////////////////////////////
				     {
				       y = 0;
				
				       i = 1;
				
				       try
				       {
				         x = Integer.parseInt ( new java.io.BufferedReader (
				           new java.io.InputStreamReader ( System.in ) ).readLine ( ) );
				       }
				       catch ( java.io.IOException  ex )
				       {
				         throw new RuntimeException ( "input error" );
				       }
				
				       if ( x > 1 )
				       {
				         int  count_0 = x;
				         for ( int  index_1 = 0; index_1 < count_0; index_1++ )
				         {
				           y = y + i;
				
				           i = i + 1;
				         }
				       }
				
				       System.out.println ( y );
				     }
				
				     public static void  main ( String [ ]  args )
				     //////////////////////////////////////////////////////////////////////
				     {
				       new Ex2 ( ).procedure ( );
				     }
				
				     //////////////////////////////////////////////////////////////////////
				     // End of Ex2
				     //////////////////////////////////////////////////////////////////////
				     }
							

相关资源