AcWing 667. 游戏时间
Posted 辰chen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 667. 游戏时间相关的知识,希望对你有一定的参考价值。
文章目录
AcWing 667. 游戏时间
本题链接:AcWing 667. 游戏时间
本博客给出本题截图:
AC代码
代码:
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
if (a == b)
cout << "O JOGO DUROU 24 HORA(S)";
else if (b > a)
cout << "O JOGO DUROU " << b - a << " HORA(S)";
else
cout << "O JOGO DUROU " << 24 - a + b << " HORA(S)";
return 0;
}
以上是关于AcWing 667. 游戏时间的主要内容,如果未能解决你的问题,请参考以下文章