下列哪行程序的作用是在屏幕上显示“Hello world”这句话。
A: include<;iostream>;
B: using namespace std;
C: cout<;<;" Hello world ";
D: return 0;
A: include<;iostream>;
B: using namespace std;
C: cout<;<;" Hello world ";
D: return 0;
举一反三
- 下列哪行程序的作用是在屏幕上显示“Hello world”这句话。 A: include<;iostream>; B: using namespace std; C: cout<;<;" Hello world "; D: return 0;
- 下列哪行程序的作用是在屏幕上显示“Hello world”这句话
- 中国大学MOOC: 下列哪行程序的作用是在屏幕上显示“Hello world”这句话。
- 中国大学MOOC: 下面程序输出结果为:#include<iostream>using namespace std;#include<string.h>int main( ){ char st[20]="hello\0\t\\"; cout<<strlen(st); cout<<sizeof(st)<<endl; cout<<st; return 0;}
- 下列哪些语句可以在屏幕上输出 hello,world 语句( ) A: Console.WriteLine( hello{0} ,“,world”); B: Console.WriteLine("hello"+“world”); C: Console.WriteLine( {0},{1} ,“hello,world”); D: Console.Write("hello,world”);