首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
头疼的CPP程序媛
中控技术_系统测试部_测试开发实习生(实习员工)
获赞
4
粉丝
3
关注
43
看过 TA
99
男
门头沟学院
2026
C++
IP属地:浙江
双非一本
私信
关注
拉黑
举报
举报
确定要拉黑头疼的CPP程序媛吗?
发布(137)
评论
刷题
收藏
头疼的CPP程序媛
关注TA,不错过内容更新
关注
2023-04-21 17:58
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #小乐乐是否被叫家长#
#include <stdio.h> int main() { int a=0,b=0,c=0; scanf("%d %d %d",&a,&b,&c); if((a+b+c)/3>=60) { printf("NO"); } else { printf("YES"); } return 0; }
0
点赞
评论
收藏
分享
2023-04-21 17:54
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #序列重组矩阵#
#include <stdio.h> int main() { int n=0; int m=0; int i=0; int j=0; scanf("%d %d",&n,&m); int arr[100]={0}; for(i=0;i<n;i++) { for(j=0;j<m;j++) { scanf("%d",&arr[j]); printf("%d ",arr[j]); } printf("\n"); } return 0; }
0
点赞
评论
收藏
分享
2023-04-21 17:32
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #成绩输入输出问题#
#include <stdio.h> int main() { int arr1[10]={0}; int i=0; for(i=0;i<10;i++) { scanf("%d",&arr1[i]); } for(i=0;i<10;i++) { printf("%d ",arr1[i]); } return 0; }
0
点赞
评论
收藏
分享
2023-04-20 14:15
中控技术_系统测试部_测试开发实习生(实习员工)
2023-04-20
在牛客打卡12天,今天学习:刷题 4 道/代码提交 19 次
0
点赞
评论
收藏
分享
2023-04-20 14:14
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #小乐乐找最大数#
#include <stdio.h> int main() { int a=0,b=0,c=0,d=0; scanf("%d %d %d %d",&a,&b,&c,&d); int x=a>b?a:b; int y=c>d?c:d; printf("%d",x>y?x:y); return 0; }
0
点赞
评论
收藏
分享
2023-04-20 14:11
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #网购#
#include <stdio.h> int main() { int y=0,t=0,q=0; float money=0.0; scanf("%f %d %d %d",&money,&y,&t,&q); if((y==t&&t==11)&&(q==1)) { money=money*0.7-50; } else if((y==t&&t==11)&&(q==0)) { money=money*0.7; } if((y==t&&t==12)&&(q==1)) { money=money*0.8-50; } else if((y==t&&t==12)&&(q==0)) { money...
0
点赞
评论
收藏
分享
2023-04-20 13:48
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #判断是不是字母#
#include <stdio.h> int main() { char ch=0; while(scanf("%c",&ch)!=EOF) if(ch!='\n') { { if('a'<=ch&&ch<='z') { printf("%c is an alphabet.\n",ch); } else if('A'<=ch&&ch<='Z') { printf("%c is an alphabet.\n",ch); } else { { printf("%c is not an alphabet.\n",ch); } } } } return 0; }
0
点赞
评论
收藏
分享
2023-04-20 13:20
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #小乐乐求和#
#include <stdio.h> int main() { long long i=0; long long n=0; long long sum=0; scanf("%d",&n); for(i=1;i<=n;i++) { sum=sum+i; } printf("%ld",sum); return 0; }
0
点赞
评论
收藏
分享
2023-04-19 23:06
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #奇偶统计#
#include <stdio.h> int main() { int i=0; int n=0; int ret=0; int sum=0; scanf("%d",&n); for(i=1;i<=n;i++) { if(i%2==1) { sum++; } else if(i%2==0) { ret++; } } printf("%d %d",sum,ret); return 0; }
0
点赞
评论
收藏
分享
2023-04-19 22:57
中控技术_系统测试部_测试开发实习生(实习员工)
2023-04-19
在牛客打卡11天,今天也很努力鸭!
0
点赞
评论
收藏
分享
2023-04-18 13:49
中控技术_系统测试部_测试开发实习生(实习员工)
2023-04-18
在牛客打卡10天,今天学习:刷题 6 道/代码提交 11 次
0
点赞
评论
收藏
分享
2023-04-18 13:48
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #平均身高#
#include <stdio.h> int main() { float a, b, c, d, e; scanf("%f %f %f %f %f", &a, &b, &c, &d, &e); printf("%.2f", (a + b + c + d + e) / 5); return 0; }
0
点赞
评论
收藏
分享
2023-04-18 13:36
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #判断整数奇偶性#
#include <stdio.h> int main() { int a=0; while(scanf("%d",&a)!=EOF) { if(a%2==0) { printf("Even"); } else { printf("Odd"); } printf("\n"); } return 0; }
0
点赞
评论
收藏
分享
2023-04-18 13:16
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #(a+b-c)*d的计算问题#
#include <stdio.h> int main() { int a=0,b=0,c=0,d=0; scanf("%d %d %d %d",&a,&b,&c,&d); printf("%d ",(a+b-c)*d); return 0; }
0
点赞
评论
收藏
分享
2023-04-18 13:13
中控技术_系统测试部_测试开发实习生(实习员工)
题解 | #新年快乐#
#include <stdio.h> int main() { printf("Happy New Year*2019*"); return 0; }
0
点赞
评论
收藏
分享
1
5
6
7
8
9
10
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务