using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 第六天_do_while循环 { class Program { static void Main(string[] args) { Console.WriteLine("老师我唱的您满意吗?"); string answer = Con…
一.while循环 实例: public class Test{ public static void main(String[] args){ int i = 1; while(i<30){ System.out.println(i); i++; } } } 二.do-while循环 public class Test{ public static void main(String[] args){ int i = 1; do{ System.out.println(i); i++; } wh…
while循环 while 语句与 if 语句相似,都有条件来控制语句(或语句块)的执行,其语言结构基本相同:while(conditions){ statements;} while 语句与 if 语句的不同之处在于:在if条件假设语句中,若逻辑条件表达式为真,则运行statements语句(或语句块),且仅运行一次:while 循环语句则是在逻辑条件表达式为真的情况下,反复执行循环体内包含的语句(或语句块). 注意:while语句的循环变量的赋值语句在循环体前,循环变量更新则放在循环体…
do-while循环 do-while先执行循环,再判断条件. 条件满足时继续循环:条件不满足时退出:至少循环1次 int sum =0; int n = 1; do{ sum = sum + n; n++; }while (n<10); System.out.println(n); System.out.println(sum);…
一.用for循环计算n! package for_package; import java.util.*;//导入含有输入类的包 public class for_class { /** * @param args */ public static void main(String[] args) {//void代表不会有返回值,参数也可以不用写 // TODO Auto-generated method stub int i; int fact=1; int n; Scanner in=new…