赞
踩
2. 编写程序, 主要测试输入输出流
#include <iostream>
using namespace std;
int main()
{
int a;
cout << "hello world" << endl; //打开新世界的大门
cout << "input a :" << endl;//输入输出流测试
cin >> a;
cout << a << endl;
}
https://www.bilibili.com/read/cv13821417/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。