c++程序—变量

#include<iostream>
using namespace std;

int main()
{
	int a = 10;
	cout << "a=" << a << endl;
	system("pause");
	return 0;

}

  

原文地址:https://www.cnblogs.com/hackerteen/p/12355913.html