Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 549 Bytes

1.2_变量.md

File metadata and controls

26 lines (18 loc) · 549 Bytes
#include<iostream>

using namespace std;

int main() {

    int a = 10;

	cout << "a=" << a << endl;

	system("pause");

	return 0;
}