关于c++编程:如何做两数之和

2024年11月30日 06:58
有4个网友回答
网友(1):

c++基本编程之两个数的和,参考代码如下:
#include
using namespace std;
int main()
{
cout<<"Enter two number:"< int v1,v2;
cin>>v1>>v2;
cout<<"The sum of"< return 0;

}

网友(2):

#include "iostream.h"
void main()
{
int A,B;
cin>>A>>B;
cout<}

网友(3):

#include
using namespace std;
int main()
{
int A,B;
cin>>A>>B;
cout<<"A+B="<return 0;
}

网友(4):

#include

int
main(void)
{
int a, b;

scanf("%d %d", &a, &b);

printf("%d+%d=%d\n", a, b, a+b);

return 0;
}