标签:style blog http ar io color os sp strong
本题要求编写程序,计算2个正整数的和、差、积、商并输出。题目保证输入和输出全部在整型范围内。
输入格式:
输入在一行中给出2个正整数A和B。
输出格式:
在4行中按照格式“A 运算符 B = 结果”顺序输出和、差、积、商。
输入样例:3 2输出样例:
3 + 2 = 5 3 - 2 = 1 3 * 2 = 6 3 / 2 = 1
1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 int a,b,sum,difference,product,quotient; 6 cin>>a>>b; 7 sum = a+b; 8 difference = a-b; 9 product = a*b; 10 quotient = a/b; 11 cout<<a<<" + "<<b<<" = "<<sum<<endl; 12 cout<<a<<" - "<<b<<" = "<<difference<<endl; 13 cout<<a<<" * "<<b<<" = "<<product<<endl; 14 cout<<a<<" / "<<b<<" = "<<quotient<<endl; 15 }
时间 | 结果 | 得分 | 题目 | 语言 | 用时(ms) | 内存(kB) | 用户 |
---|---|---|---|---|---|---|---|
12月16日 22:40 | 答案正确 | 10 | IO-02 | C++ (g++ 4.7.2) | 1 | 368 | liyuhui |
测试点 | 结果 | 用时(ms) | 内存(kB) | 得分/满分 |
---|---|---|---|---|
0 | 答案正确 | 1 | 260 | 6/6 |
1 | 答案正确 | 1 | 368 | 4/4 |
标签:style blog http ar io color os sp strong
原文地址:http://www.cnblogs.com/liyuhui20093357/p/4168282.html