这是第一种方法:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}
第二种:
#include<iostream>
using namespace std;
int main()
{
int a,b,c;
c=a+b;
cout<<c;
}
这两种方法本质上的意义是相同的,而操作起来一个是利用数组类储存两数加和再输出,一种是直接输出加和