- 博客(8)
- 收藏
- 关注
原创 递归
public class Textdigui { public static void main(String args[]){ System.out.println(“10的阶乘是” + factorialoop(10) ); } static long f(int n){ if(n == 1){ return 1; }else{ return ...
2019-12-17 16:26:33 112
原创 java的 “方法”
public class TextMethod { public static void main(String[] args) { TextMethod tm = new TextMethod(); //面向对象 tm.add1(20,49,50); //调用add1方法 int z = tm.add1(20,23,34) + 1324; System.out.println(z);...
2019-12-11 20:42:20 424
原创 带标签的continue
public class Textcontiue { public static void main(String[] args){ int c =0; //计数器 outer:for(int a = 101;a <= 150;a++){ for(int b = 2;b< a/2;b++){ if(a % b ==0){ ...
2019-12-11 19:53:54 456
原创 九九乘法表
public class Textxunhuan { public static void main(String[] args){ for(int n = 1;n <= 9;n++){ for(int m =1;m <=n;m++){ System.out.print(m +""+n+"="+ mn +"\t"); } System.out.println(); } ...
2019-12-10 16:38:25 79
原创 java for循环
public class Text1{ public static void main(String[] args){ int sum = 0; for(int i = 1; i < =100; i++){ sum = sum + i; } System.out.println(sum); /** 1:执行初始化语句 i = 1; 2:判断i <= 100; 3:执行循环体; 4:步进...
2019-12-04 20:24:25 107
原创 Switch 语句
switch(表达式){ case 值1: 语句序列1; break; case 值2: 语句序列2; break; defalut: 语句序列3; break; }
2019-12-03 19:23:41 83
原创 Scanner 键盘输入 交互式
import java.util.Scanner; public class Text { public static void main(String[] args){ Scanner scanner = new Scanner(System.in); System.out.println(“请输入你的名字:”); String name = scanner.nextLine(); System...
2019-12-02 22:13:47 587
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人