码迷,mamicode.com
首页 > 其他好文 > 详细

IO-02. 整数四则运算(10)

时间:2014-12-17 00:05:30      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   io   color   os   sp   strong   

时间限制

400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard
作者
乔林(清华大学)

本题要求编写程序,计算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

查看代码

IO-02. 整数四则运算(10)

标签:style   blog   http   ar   io   color   os   sp   strong   

原文地址:http://www.cnblogs.com/liyuhui20093357/p/4168282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!