Codeforces 1173A Nauuo and Votes

Posted carered

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 1173A Nauuo and Votes相关的知识,希望对你有一定的参考价值。

题目链接: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的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces1172E. Nauuo and ODT

Codeforces 1172C2 Nauuo and Pictures (hard version) dp

CF1172B Nauuo and Circle

code forces 1173 B. Nauuo and Chess

cf1173 D. Nauuo and Circle

[CF1172B] Nauuo and Circle