首页 > 其他 > 详细

循环语句应用实例

时间:2016-02-24 14:07:50      阅读:78      评论:0      收藏:0      [点我收藏+]
a.编写程序,使用循环控制语句计算“1+2+3+。。。。+100"的值。
public class Exercise7_1
{
 public static void main( String[] args )
 {
   int sum = 0;
   
  // 累加计算
   for( int i=1; i<101; ++i )
   {
      sum += i;
   }
   
  System.out.println( "1+2+3+……+100 = " + sum );
 }
}
b.编写程序,判断某一年是否为闰年.

public class Exercise7_3 {  public static void main(String[] args)  {   int year = (int)( Math.random() * 10000 );

  System.out.print( year + "年" );      if( ( year%4==0 && year%100!=0 ) || year%400==0 )   {    System.out.println( "是闰年。" );   }   else   {    System.out.println( "不是闰年。" );   }     }

循环语句应用实例

原文:http://www.cnblogs.com/bianxiaoyan/p/5212602.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!