摘要:
简单题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;} 阅读全文
posted @ 2012-10-19 22:18
undefined2024
阅读(127)
评论(0)
推荐(0)