一只咖啡君
一只咖啡君
全部文章
分类
归档
标签
去牛客网
登录
/
注册
一只咖啡君的博客
全部文章
(共121篇)
【C】#健康评估#
#include <stdio.h> int main() { int weight; float height; scanf("%d %f", &weight, &height); float BMI = weight / (heigh...
2022-11-24
1
1513
【C】#四季#
#include <stdio.h> int main() { int year, month; scanf("%4d%2d", &year, &month); if (month >= 3 && month <= 5...
2022-11-24
2
1720
【C】#判断字母#
#include <stdio.h> int main() { char ch; scanf("%c", &ch); if(ch >= 'A' && ch <= 'z') printf("YES"); ...
2022-11-24
1
1950
【C】#判断闰年#
#include <stdio.h> int main() { int n; scanf("%d", &n); if((n % 4 == 0 && n % 100 != 0) || n % 400 == 0) printf...
2022-11-24
3
1715
【C】#牛牛的判断题#
#include <stdio.h> int main() { int x, l, r; scanf("%d %d %d", &x, &l, &r); if (x >= l && x <= r) ...
2022-11-24
1
1861
【C】#判断是元音还是辅音#
#include <stdio.h> #include <string.h> int main() { char arr[] = "AEIOUaeiou"; char letter; while (scanf("%c", &letter) !...
2022-11-24
1
1605
【C】#判断整数奇偶性#
#include <stdio.h> int main() { int nums; while (scanf("%d", &nums) != EOF) { if(nums % 2) printf("Odd\n"); ...
2022-11-24
1
1606
【C】#及格分数#
#include <stdio.h> int main() { int score; while (scanf("%d", &score) != EOF) { if (score >= 60) printf("Pas...
2022-11-24
1
1650
【C】#你是天才吗?#
#include <stdio.h> int main() { int IQ; while (scanf("%d", &IQ) != EOF) { if(IQ >= 140) printf("Genius"); ...
2022-11-22
1
1512
【C】#kiki算数#
#include <stdio.h> int main() { unsigned int a, b; while (scanf("%u %u", &a, &b) != EOF) { printf("%u", (a + b) % 100);...
2022-11-22
1
1367
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页