whlie and for

Posted PoeticalJustice

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了whlie and for相关的知识,希望对你有一定的参考价值。

 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的主要内容,如果未能解决你的问题,请参考以下文章

循环结构

第三次实验报告

Nginx——Nginx启动报错Job for nginx.service failed because the control process exited with error code(代码片段

python 全栈开发 whlie 循环

[RxJS] Implement RxJS `mergeMap` through inner Observables to Subscribe and Pass Values Through(代码片段

集合的三种遍历方式