個人相片
p.4-37 第九題---一大一小整數數字,求商
102一毅36 錢玟卉(資研社文書長)發表於2014年 10月 21日(二.) 17:13
#include <iostream>
using namespace std;

int main() {
int a,b,c;
cin>>a>>b;
if(a>b&&b!=0)
{c=a/b;
cout<<"商等於"<<c<<endl;}
else if(a<b&&a!=0)
{c=b/a;
cout<<"商等於"<<c<<endl;}
else
{cout<<"你居然給我打非整數,我....我....((淚奔"<<endl;
}
return 0;

}