为了账号安全,请及时绑定邮箱和手机立即绑定

Java入门第一季(IDEA工具)升级版

  • public class HelloWorld{

    public static void main(String[] args){


    //利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。

    int r=44;

    if(r>=90){

    System.out.println("A");

    }else if(r<=89&&r>60){

    System.out.println("B");

    }else{

    System.out.println("C");

    }

    }

    }


    查看全部
    0 采集 收起 来源:编程练习

    2021-04-22

  • int m=0;


    for(int a=1;a<5;a++){

        for(int b=1;b<5;b++){

            for(int c=1;c<5;c++){

               if(a!=b&&a!=c&&b!=c){

                    m++; 

                 System.out.println(a+""+b+""+c);

               }

                

              

            }

        }

        System.out.println(m);

    }

    }

    }

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{


    public static void main(String[] args){


    //有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?

    int a=0;

    int x=0;

    for(int b=1 ;b<=4 ;b++){

    for(int c=1 ;c<=4 ;c++){

    for(int d=1 ;d<=4 ;d++){    

    a=b*100+c*10+d;

    if(b!=c&&c!=d&&b!=d){

        x++;

     System.out.println(a); 

    }

    }

    }

    }System.out.println(x); 

    }

    }

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{


    public static void main(String[] args){

     //有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?

        int sum =0;

        int count=0;

        for(int a=1;a<=4;a++){

        for(int b=1;b<=4;b++){

        for(int c=1;c<=4;c++){

        sum=a*100+b*10+c;

        if(a!=b&&a!=c&&b!=c){

        count++;

            System.out.println(sum);

            

        }

            

            

        }

        }

        }System.out.println(count);

    }

    }

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{

    public static void main(String[] args){

    //有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?

    int a=0;

    int r=0;

    for(int b=1;b<=4;b++){

    for(int c=1;c<=4;c++){

    for(int d=1;d<=4;d++){

    a=d*100+c*10+b;

    if(b!=c&&b!=d&&c!=d){

    r++;

    System.out.println(a);


    }

    }

    }

    }    System.out.println("都有"+r+"个");

    }

    }


    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{


    public static void main(String[] args){

    int x=0;

    int z=0;

    int d=1;

    int sum=1;

    for(int m=1;m<=2;m++){

        System.out.println(sum);

        for(m=2;m<=12;m++){

            d=x+z;

            x=z;

        z=d;

        sum=z+d+x;

        System.out.println(sum);

        }

    }

    }

    }

    //错误示范:兔子终于死了

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{


    public static void main(String[] args){

    int sum =0;

    /*九九乘法口诀*/

    for (int i=1;i<=9; i++){

     for(int x=1;x<=9;x++){

        System.out.println(i+"*"+x+"="+x*i);

    }

    }

    }

    }

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{

    public static void main(String[] args){

    //输入n打印n*n乘法口诀表,n的范围在2到9之间

    for(int x=1;x<10;x++){

    for(int y=1;y<10;y++){

    int z=x*y;

    System.out.println(x+"*"+y+"="+z);


    }System.out.println( );

    }

    }

    }


    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{

    public class HelloWorld{


    public static void main(String[] args){


        for(int i=1;i<10;i++){


            for(int x=1;x<10;x++){


                int y=i*x;


                System.out.println(i+"*"+x+"="+y);

            }

            System.out.println();

        }


    }


    }

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-21

  • public class HelloWorld{

    public static void main(String[] args){

    /**

    * 题目:判断两个数之间有多少个素数,并输出所有素数。

    */

    int s=0;

    for ( int i=100; i<=200 ; i++){

    for(s=2;s<i;s++){

    if(i%s==0){

    break;     

    }

    if(s==i){

    System.out.println(i);

    }

    }

    }

    }

    查看全部
    1 采集 收起 来源:编程练习

    2021-04-21

  • switch

    1、 switch 后面小括号中表达式的值必须是整型或字符型

    2、 case 后面的值可以是常量数值,如 1、2;也可以是一个常量表达式,如 2+2 ;但不能是变量或带有变量的表达式,如 a * 2

    3、 case 匹配后,执行匹配块里的程序代码,如果没有遇见 break 会继续执行下一个的 case 块的内容,直到遇到 break 语句或者 switch 语句块结束 

    4、 可以把功能相同的 case 语句合并起来

    5、 default 块可以出现在任意位置,也可以省略

    查看全部
  • public class HelloWorld{


    public static void main(String[] args){

    int a=0;//小兔子

    int b=1;//中兔子

    int c=0;//大兔子

    int sum=1;//兔子总数

    for(int m=1;m<=2;m++){//前两个月

        System.out.println(sum);

    }

    for(int m=2;m<=12;m++){//后10个月

        c=a+b;

        a=b;

        b=c;

        sum=a+b+c;

        System.out.println(sum);

    }

    }

    }

    //兔子怎么不会死?你们去猜

    查看全部
    0 采集 收起 来源:编程练习

    2021-04-20

举报

0/150
提交
取消
课程须知
学习中需要用到这些工具: —JDK-Java开发环境 —IDEA编程开发工具 课程适合零基础的同学,只要你对Java有兴趣,都可以0成本完成入门!
老师告诉你能学到什么?
1、会配置Java开发环境,并使用工具进行程序开发 2、掌握Java中基本语法的使用并入门

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!