#include <cstdio>
#include <iostream>
using namespace std;
int main() {
int a ,b ;
scanf("%d%d",&a,&b);
int res;
if (a < b) res = b - a;
else res = b - a + 24;
printf("O JOGO DUROU %d HORA(S)\n",res);
return 0;
}
667. 游戏时间(C++语法题)
最新推荐文章于 2024-11-09 20:38:27 发布