码迷,mamicode.com
首页 > 其他好文 > 详细

whlie and for

时间:2017-09-28 22:23:55      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:统一   ==   author   else   blog   输出   练习   public   test   

 1 public class TestWhileAndFor {
 2 
 3     /**测试 while和for循环练习
 4      * 100 以内的奇数和偶数的和
 5      * @author Administrator
 6      * 
 7      */
 8     public static void main(String[] args) {
 9         /*
10         //奇数和
11         int oddsum=0;
12         //偶数和
13         int evensum=0;
14         //统一改变量名的快捷键ALT+SHIFT+R 
15         for(int a=0;a<=100;a++){
16             if(a%2!=0){
17             oddsum+=a;
18             }else{
19                 evensum+=a;
20             }
21         }
22         System.out.println("奇数和:"+oddsum);
23         System.out.println("偶数和:"+evensum);
24     */
25     /*
26      * 输出1-1000以内被5整数的数 每三个一行
27      */
28     for(int i=1;i<=1000;i++){
29         if(i%5==0){
30             System.out.print(i+"\t");
31     
32             }
33         
34         if(i%(5*3)==0){
35             System.out.println();
36         }
37     
38         }
39 
40     }

 

whlie and for

标签:统一   ==   author   else   blog   输出   练习   public   test   

原文地址:http://www.cnblogs.com/PoeticalJustice/p/7608786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!