SGU 276 Andrew's Troubles

简单的题。直接找题意来就好了。

#include <iostream>
#include <cstdio>
using namespace std;
int s, n, ans;
int main() {
    cin >> s >> n;
    n -= s;
    if (n >= 30 * 60)   ans++;
    if (n >= 15 * 60)   ans++;
    if (n >= 5  * 60)   ans++;
    if (n > 0)   ans++;
    cout<<ans<<endl;
}
View Code

 

posted @ 2015-05-07 19:01  keambar  阅读(99)  评论(0编辑  收藏  举报