poj4011

简单题

View Code
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
using namespace std;

int main()
{
    int n;
    scanf("%d", &n);
    if (n >= 199)
        printf("0\n");
    else
        printf("%d\n", 199 - n);
    return 0;
}
原文地址:https://www.cnblogs.com/rainydays/p/2731704.html