查 conio.h 里的函数 _getch() 的表达和用法。
VC++ 6.0 程序:
#include
#include
int main()
{
int a=0,b=0;
int c;
printf("input a+b= ");
printf("for example: 123+456= \n");
while(1){
c=_getch(); _putch(c);
if (c == '+')break;
if(c>='1' && c<='9')a=a*10+ (c-'0');
}
while(1){
c=_getch(); _putch(c);
if (c == '=')break;
if(c>='1' && c<='9')b=b*10+(c-'0');
}
printf("%d",a+b);
return 0;
}