C++ 的输入输出

实现截图
image

实现代码

#include <iostream>
using namespace std;

int main()
{
	//声明变量
	int a;
	//输入
	cin >> a;
	//输出
	cout << a;
}
posted @ 2023-02-11 17:41  share0956  阅读(19)  评论(0)    收藏  举报