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

Codeforces 1173A Nauuo and Votes

时间:2019-07-13 22:41:13      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:代码   std   for   ret   targe   def   get   链接   while   

题目链接:http://codeforces.com/problemset/problem/1173/A

技术图片

技术图片


思路:模拟。

AC代码:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     int x,y,z;
 6     while(cin >> x >> y >> z)
 7     {
 8         if(x == y)
 9         {
10             if(z == 0) cout << 0 << endl;
11             else cout << "?" << endl;
12         }
13         else if(x > y)
14         {
15             if(x - y > z) cout << "+" <<  endl;
16             else cout <<  "?" << endl;
17         }
18         else
19         {
20             if(y - x > z) cout << "-" << endl;
21             else cout <<  "?" << endl;
22         }
23     }
24     return 0;
25 }

 

Codeforces 1173A Nauuo and Votes

标签:代码   std   for   ret   targe   def   get   链接   while   

原文地址:https://www.cnblogs.com/Carered/p/11182374.html

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