这是我第一篇博客。
我就在这里放一些我平常学习用的网站以及一些我觉得有意思的网站。
- 吾爱破解
- bilibili
- 洛谷
- 力扣
- 拼题A
- Codeforces
- 51nod
- CSDN
- cppreference
- 菜鸟教程
- 慕课
- VirtualJudge
- ProjectEuler
再来放一个经典a+b程序
1 2 3 4 5 6 7 8
| #include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; cout<<a+b<<endl; }
|