• 2022-05-31
    main()函数可以有返回值,也可以没有返回值
    A: #includeintmain(){printf("helloworld");return0;}
    B: #includeintman(){printf("helloworld");return0;}
    C: #includeintmain(){printf("helloworld")return0;}
    D: #includeintmain(){print("helloworld");return0;}
  • A

    内容

    • 0

      #includeintmain(){printf(“Hello,World!”);return0;}以上C语言程序的功能是()。

    • 1

      中国大学MOOC:执行以下程序后的输出结果为#includeintmain(){inta=1,b=0;switch(a){case1:switch(b){case0:printf("**0**");break;case1:printf("**1**");break;}case2:printf("**2**");break;}return0;}

    • 2

      拟在屏幕上打印输出HelloWorld,使用的Python语句是: A: printf(‘HelloWorld’) B: print(HelloWorld) C: print("HelloWorld") D: printf("HelloWorld")

    • 3

      中国大学MOOC:程序运行后的输出结果是#includeintmain(){inti;for(i=0;i<3;i++)switch(i){case0:printf("%d",i);case2:printf("%d",i);default:printf("%d",i);}return0;}

    • 4

      在屏幕上打印输出“HelloWorld”,以下选项中正确的是()。 A: print('HelloWorld') B: printf("HelloWorld") C: printf('HelloWorld') D: print(HelloWorld)