1、循环

一、while循环

示例1:循环打印1到10的值

 1 /**
 2  * 循环打印1到10的值
 3  * @author Dell
 4  *
 5  */
 6 public class TestWhile {
 7     public static void main(String[] args) {
 8         //1.循环条件初始化赋值
 9         int i=1;
10
11         //2.编写while循环,给定循环条件
12         while(i<=10){
13             //循环重复操作
14             System.out.println("打印第"+i+"遍!");
15
16             //3.改变循环条件
17             i++;
18         }
19
20     }
21
22 }

示例2:循环询问张浩学习成绩是否合格

 1 import java.util.Scanner;
 2 /**
 3  * 循环询问张浩学习成绩是否合格
 4  * @author Dell
 5  *
 6  */
 7 public class TestWhile2 {
 8     public static void main(String[] args) {
 9         Scanner input=new Scanner(System.in);
10         System.out.print("张浩的学习任务是否合格y:n?");
11         //1.定义循环初始值
12         String word=input.next();
13         //2.定义循环条件
14         while(word.equals("n")){
15             System.out.println("上午阅读教材!");
16             System.out.println("下午上机练习!");
17             //3.改变循环条件
18             System.out.print("张浩的学习任务是否合格y:n?");
19             word=input.next();
20         }
21         System.out.println("学习任务合格");
22     }
23
24 }

示例3:循环打印菜单

 1 public class TestWhile4 {
 2     public static void main(String[] args) {
 3         Scanner input=new Scanner(System.in);
 4
 5         System.out.println("MyShopping 管理系统>购物结算\n");
 6         System.out.println("****************************************");
 7         System.out.println("请选择购买商品的编号:");
 8         System.out.println("1.T恤\t2.网球鞋\t3.网球拍");
 9         System.out.println("****************************************");
10         String falg="y";
11         while(falg.equals("y")){
12             System.out.print("请输入商品编号:");
13             int num=input.nextInt();
14             switch (num) {
15             case 1:
16                 System.out.println("T恤\t¥245.0");
17                 break;
18             case 2:
19                 System.out.println("网球鞋\t¥245.0");
20                 break;
21             case 3:
22                 System.out.println("网球拍\t¥245.0");
23                 break;
24             default:
25                 break;
26             }
27             System.out.print("是否继续:(y/n)");
28              falg=input.next();
29         }
30         System.out.println("程序结束!");
31     }
32
33 }

二、do-while循环

示例2.1:询问学生作业是否合格?

 1 import java.util.Scanner;
 2 /**
 3  * 询问学生作业是否合格?
 4  * @author Dell
 5  *
 6  */
 7 public class Test_DoWhile {
 8     public static void main(String[] args) {
 9         Scanner input=new Scanner(System.in);
10         //1.定义循环条件的变量
11         String flag="null";
12
13         do{
14             //2.执行的操作
15             System.out.println("写作业...");
16
17             //3.改变循环条件
18             System.out.print("作业是否合格?不合格接着写!!");
19              flag=input.next();
20
21
22         }while(flag.equals("n"));
23
24
25         System.out.println("作业合格");
26
27     }
28
29 }

三、for循环

示例 3.1:循环输入5门课程成绩并计算平均值

 1 import java.util.Scanner;
 2 /**
 3  * 循环输入5门课程成绩并计算平均值
 4  * @author Dell
 5  *
 6  */
 7 public class For01 {
 8     public static void main(String[] args) {
 9         Scanner input=new Scanner(System.in);
10         System.out.println("请输入姓名:");
11         String name=input.next();
12         double sum=0; //总分
13         double avg=0;
14         for(int i=1;i<=5;i++){
15             System.out.print("输入5门成绩的第"+i+"门成绩:");
16             double sorce=input.nextDouble();
17             sum +=sorce;//sum=sum+score;
18             if(i==5){
19                 avg=sum/i;
20             }
21         }
22         System.out.println(name+"平均分是:"+avg);
23     }
24 }

四、嵌套for循环

示例 4.1:打印矩形

 1 /**
 2  * 打印矩形
 3  */
 4 public class Rectangle {
 5     public static void main(String[] args) {
 6         System.out.println("打印矩形");
 7         for(int i = 0; i < 5; i++){
 8             for(int j = 0; j <5; j++){
 9                 System.out.print("*");
10             }
11             System.out.print("\n");        //换行
12         }
13     }
14 }

示例:4.2 输入行数,打印直角三角形

 1 import java.util.Scanner;
 2 /**
 3  * 输入行数打印直角三角形
 4  */
 5 public class RTriAngle {
 6     public static void main(String[] args) {
 7         int rows = 0;    //三角形行数
 8         System.out.print("请输入直角三角形的行数:");
 9         Scanner input = new Scanner(System.in);
10         rows = input.nextInt();
11
12         //打印直角三角形
13         for(int i = 1; i <= rows; i++){
14             for(int j = 1; j <= 2*i-1; j++){
15                 System.out.print("*");
16             }
17             System.out.print("\n");
18         }
19     }
20 }

示例 4.3 :输入行数,打印倒直角三角形

 1 import java.util.Scanner;
 2 /**
 3  * 输入行数打印倒直角三角形
 4  */
 5 public class InvertRTriAngle {
 6     public static void main(String[] args) {
 7         int rows = 0;    //三角形行数
 8         System.out.print("请输入直角三角形的行数:");
 9         Scanner input = new Scanner(System.in);
10         rows = input.nextInt();
11
12         //打印倒直角三角形
13         for(int i = 1; i <= rows; i++){
14             for(int j = 1; j <= rows+1-i; j++){
15                 System.out.print("*");
16             }
17             System.out.print("\n");
18         }
19     }
20 }

示例 4.4 :输入行数,打印等腰三角形

 1 import java.util.Scanner;
 2 /**
 3  * 输入行数打印等腰三角形
 4  */
 5 public class IsoTriangle {
 6     public static void main(String[] args) {
 7         int rows = 0;    //三角形行数
 8         System.out.print("请输入等腰三角形的行数:");
 9         Scanner input = new Scanner(System.in);
10         rows = input.nextInt();
11         //打印等腰三角形
12         for(int i = 1; i <= rows; i++){
13             for(int j = 1; j <= rows-i; j++){
14                 System.out.print(" ");
15             }
16             for(int k = 1; k <= 2*i-1; k++){
17                 System.out.print("*");
18             }
19             System.out.print("\n");
20         }
21     }
22 }

示例:4.5 打印九九乘法表

 1 /**
 2  * 打印九九乘法表
 3  */
 4 public class MulTable {
 5     public static void main(String[] args) {
 6         int rows = 9;                        //乘法表的行数
 7         for(int i = 1; i<=rows; i++){        //一共9行
 8             for(int j = 1; j <= i; j++){    //第i行有i个式子
 9                 System.out.print(j+"*"+i+"="+j*i+"    ");
10             }
11             System.out.print("\n");            //打印完一行后换行
12         }
13     }
14 }
时间: 2024-10-07 05:31:55

1、循环的相关文章

微信小程序学习总结(2)------- 之for循环,绑定点击事件

最近公司有小程序的项目,本人有幸参与其中,一个项目做下来感觉受益匪浅,与大家做下分享,欢迎沟通交流互相学习. 先说一下此次项目本人体会较深的几个关键点:微信地图.用户静默授权.用户弹窗授权.微信充值等等. 言归正传,今天分享我遇到的关于wx:for循环绑定数据的一个tips:  1. 想必大家的都知道wx:for,如下就不用我啰嗦了: <view class="myNew" wx:for="{{list}}">{{item.title}}<view

条件、循环、函数定义、字符串操作练习

注意标准库的两种导入与使用方式,建议大家采用<库名>.<函数名>的方式. 对前面的代码进行优化,用for,while,if,def实现: 用循环画五角星 1 import turtle 2 3 turtle.fillcolor("red") 4 turtle.begin_fill() 5 for i in range(5): 6 turtle.forward(100) 7 turtle.right(144) 8 turtle.end_fill() 用循环画同心圆

C语言for循环的一些注意细节

在使用for循环接收处理数组的时候,有时候要回到数组的首位置.以前没有注意这个问题,以为循环变量置0就可以,实际不是这样的.先来看一下for循环的反汇编代码,如下: Unit1.cpp.595: for(int i=0;i<3;i++)   00402938 33C0             xor eax,eax   0040293A 8945F4           mov [ebp-0x0c],eax   Unit1.cpp.597: i = 0;   0040293D 33D2     

python基础之条件循环语句

前两篇说的是数据类型和数据运算,本篇来讲讲条件语句和循环语句. 0x00. 条件语句 条件语句是通过一条或多条语句的执行结果(True或者False)来决定执行的代码块. 可以通过下图来简单了解条件语句的执行过程: Python interprets non-zero values as True. None and 0 are interpreted as False. Python 判断非0的值为 True, 而None和0被认为是 False.注意这里的True和False首字母大写,Py

JS循环

JS循环基础知识 [循环结构的执行步骤] 1,声明循环变量: 2,判断循环条件: 3,执行循环体操作: 4,更新循环变量: 然后,循环执行2-4,直到条件不成立时,跳出循环: while循环()中的表达式,运算结果可以是各种类型.但是最终都会转化为真假,转换规则同if结构: ①boolean:true为真,flase为假: ②string:空字符串为假,所有非空字符串为真: ③number:0为假,一切非0数字为真: ④null,undefined,NaN全为假: ⑤object:全为真: wh

shell脚本for循环

Shell循环:for 循环次数是固定的 ===================== Shell: for  变量名  [in  取值列表] do 循环体 done C语言: for((初值;条件;步长)) do 循环体 done ===================== Shell循环:while  until 循环次数不一定是固定的 可以固定 可以不固定 while语句: while  条件测试 do 循环体 done 功能:当条件测试成立(条件测试为真),执行循环体. =========

WordPress主循环(The Loop)函数have_posts(),the_post()详解

WordPress中调用文章标题是the_title();调用文章内容时用到the_content();调用文章的作者时用到the_author();等等这些函数,都需要在主循环中使用,下面就介绍一下如何用have_posts()和the_post()开始Wordpress文章中循环,并说明如何结束循环. 语法 1 <?php if (have_posts()) :  while (have_posts()) : the_post(); ?> 2 当找到文章时返回此语句 3 <?php 

python学习笔记二:if语句及循环语句,断点,模块,pyc

if语句 注意:语句块中的内容要强制缩进,否则出错.IndentationError,缩进错误 所有代码,如果是顶级的,必须顶格写,前面不能有空格 if - : - elif - : - else: - while语句 while -: - else: - for语句 for i in range(10)--i默认0,步长默认1,最大为9 for i in range (0,2,10)--从0开始,步长为2,最大为8 for  i   in range(-): - else: - break--

while与do while 区别 for循环的简介及break和continue的区别

do while 循环和while循环的区别   1.do while循环是先执行循环体,然后判断循环条件,如果为真,则执行下一步循环,否则终止循环:    while循环是先判断循环条件,如果条件为真则执行循环体:   2.do while循环条件后面必须有一个分号,这个分号表明循环结束. 1.for循环 for循环是更加简洁的循环语句,大部分情况下,for循环可以代替while循环.do-while循环. for循环的格式为: for( 初始语句  ; 执行条件  ; 增量 ) { 循环体

4循环嵌套和方法

1 循环嵌套 循环嵌套(多重循环):一个循环结构中的循环体包含其他的循环结构. 任意两种循环结构都可以相互嵌套. for(表达式1;表达式2;表达式3){ for(表达式1;表达式2;表达式3){ } } 特点:外层循环执行1次,内层循环有可能执行多次. 只有当内层循环执行结束后,才会执行下次的外层循环. 示例1:打印3行8列的矩形矩形 public class TestLoop{ public static void main(String[] args){ //外层循环控制行数 for(in