对于输出,比C语言要自由的多,可以输出各种型的数据,同样可以输出多个数据。 例如 cout << " Hello, world " << 1 << 2.0 << endl; 执行结果 Hello, world 1, 2 Press any key to continue
再讲讲输入,也是很自由的。 程序2,文件名:test2.cpp /////////////////////////////////////////////////////////////// #include using namespace std; int main() { char x[32]; char y[32]; cin >> x >> y; cout << x << " " << y << endl; } /////////////////////////////////////////////////////////////// 执行结果 /////////////////////////////////////////////////////////////// hello world hello world Press any key to continue /////////////////////////////////////////////////////////////// cin 表示输入。
用户1724505 2019-6-10 17:49
Lost 2019-1-3 14:50
allen_zhan_752827529 2018-12-18 10:13
忆轻狂 2018-12-14 08:45