本文介绍了总和期间的turbo c ++错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
此处给出以下代码:
#include<iostream.h>
#include<conio.h>
void main()
{
int number1,num2,res;
clrscr();
cout<<"enter num1";
cin>>number1;
cout<<"enter num2";
cin>>num2;
cout<<"sum is:"<<res;
getch();
}
当我输入number1的2个值时,num1 = 2,4
这显示结果= 1562.
When I entered the 2 values of number1,num1=2,4
this display the result = 1562.
推荐答案
这篇关于总和期间的turbo c ++错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!