#8763: 簡易加法..


CaptainSoap (CptSoap)


#include <iostream>
using namespace std;

int main ()
{
int a;
int b;
cout <<"請輸入兩個數字";
cin>>a;
cin>>b;
cout << a+b <<endl;
        system("pause"); 
}
 
請問一下 我這樣打 結果最後他一直NA
求各位幫忙.. 

#8765: Re:簡易加法..


cse210639 (210639)


要用while