A+B Problem应该是仅次于Hello World之外最简单的题了,首先要了解一些基本的东西:
1.头文件,如:cstdio,iostream,Windows.h,前面要加上#include,如:#include<iostream>,当然,如果你为了懒省事简单,也是有办法的:
当当当当:万能头闪亮登场:#include<bits/stdc++.h>,几乎可以代替所有头文件。
2.using namespace std;标准命名空间
3.int main主函数
4.数据类型:{int(16),long(32),long long(64)}(整形},double(小数型),float(浮点型),char(字符型)
5.code:
第一种(万能)
1 #include<bits/stdc++.h> 2 using namespace std; 3 int main() 4 { 5 long long a,b; 6 cin>>a>>b; 7 cout<<a+b; 8 return 0; 9 }
第二种(不存在负数)
1 #include<bits/stdc++.h> 2 using namespace std; 3 int main() 4 { 5 long long a,b,c; 6 cin>>a>>b; 7 for(int i=0;i<a+b;i++) 8 { 9 c++; 10 } 11 cout<<c<<endl; 12 return 0; 13 }
感谢观看