2010年7月30日 星期五

高中 d050: 妳那裡現在幾點了?



想看題目請點我

#include<iostream>
using namespace std;

int main() {
     unsigned int time ;
     while(cin >> time)
     {
         cout << (time+9)%24 << endl ;
     }
     return 0;
}