加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
4.1.c 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
王振宇 提交于 2022-04-01 23:23 . 牛客
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
int main()
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
int val = (a + b + c) / 3;
if (val < 60)
printf("YES");
else
printf("NO");
return 0;
}
#include <stdio.h>
int main()
{
int count = 0;
scanf("%d", &count);
while (count--)
printf("Happy new year!Good luck!\n");
return 0;
}
#include<stdio.h>
int main() {
int n = 0;
long long s = 0;
scanf("%d", &n);
int i = 0;
for (i = 1; i <= n; i++) {
s += i;
}
printf("%ld", s);
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化