update .gitignore
This commit is contained in:
parent
4d6fe72596
commit
3e54fd98ef
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
**/*.exe
|
||||||
|
**/gmon.out
|
12
第一讲 变量、输入输出、表达式与顺序语句/1.cpp
Normal file
12
第一讲 变量、输入输出、表达式与顺序语句/1.cpp
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int a, b;
|
||||||
|
cin >> a >> b;
|
||||||
|
|
||||||
|
cout<< a + b << endl;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user