2 solutions
- 1
Information
- ID
- 118
- Time
- 1000ms
- Memory
- 64MiB
- Difficulty
- 6
- Tags
- # Submissions
- 209
- Accepted
- 68
- Uploaded By
#include using namespace std;
int main() { int a; cin >> a; if (a > 25) { cout << 25 + 60 - a; } else { cout << 25 - a; } return 0; }
你的头文件……
666