#45673: 簡單明瞭的解法


ercheng2011@gmail.com (Arthur Wang)

學校 : 不指定學校
編號 : 274284
來源 : [112.104.66.104]
最後登入時間 :
2025-03-29 22:28:37
d066. 上學去吧! -- 板橋高中教學題 | From: [112.104.66.104] | 發表日期 : 2025-03-29 22:13

#include <bits/stdc++.h>
using namespace std;
int main() {
    int hh, mm;
    cin>>hh>>mm;
    int totalMinutes=hh*60+mm;
    int startTime=7*60+30;
    int endTime=17*60;
    if (totalMinutes>=startTime&&totalMinutes<endTime){
        cout<<"At School";
    } else {
        cout<<"Off School";
    }
    return 0;
}
 
ZeroJudge Forum