L1073 弟弟的作业 摘要: 你的弟弟刚做完了“100以内数的加减法”这部分的作业, 请你帮他检查一下。每道题目(包括弟弟的答案)的格式为a+b=c或者a-b=c, 其中a和b是作业中给出的,均为不超过100的非负…… 文章列表 2018年03月28日 2 点赞 0 评论 2187 浏览 评分:0.0
DemoVei-DNA (C代码) 摘要:#对于这道题最主要的是观察图形,从图形的规律上找突破口。#include<stdio.h> int main() { int N; scanf("%d",&N); w…… 文章列表 2018年03月27日 3 点赞 0 评论 1174 浏览 评分:0.0
网上热传的2018刑侦题暴力破解 摘要: 最近,网上热传一份2018年刑侦试题,这套题也是让大家开了眼界,原来题目还能这样出。看到这套试卷之后,我心血来潮,经过一番艰苦的逻辑推理,终于也得出了正确答案。但是,为什么要让我们的人脑…… 文章列表 2018年03月27日 9 点赞 1 评论 759 浏览 评分:0.0
1010 摘要: #include<stdio.h> int main() { int i; scanf("%d",&i); if(i<=100000) printf("%d\n",i*…… 文章列表 2018年03月27日 1 点赞 0 评论 1124 浏览 评分:0.0
1005 摘要:#include<stdio.h> int main() { double f,c; scanf("%lf",&f); c=5*(f-32)/9; printf("…… 文章列表 2018年03月27日 1 点赞 0 评论 1606 浏览 评分:0.0
1001 摘要:#include<stdio.h> int main() { printf("**************************\nHello World!\n*************…… 文章列表 2018年03月27日 1 点赞 0 评论 1462 浏览 评分:0.0
1006 摘要:#include<stdio.h> int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); if(a>b) { i…… 文章列表 2018年03月27日 1 点赞 0 评论 1284 浏览 评分:0.0
1008 摘要:#include<stdio.h> int main() { int x; scanf("%d",&x); if(x>=90) printf("A\n"); else if(…… 文章列表 2018年03月27日 0 点赞 0 评论 1502 浏览 评分:9.9
1007 摘要:#include<stdio.h> int main() { int x; scanf("%d",&x); if(x<1) printf("%d\n",x); …… 文章列表 2018年03月27日 0 点赞 0 评论 1589 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5(L1051) 摘要: 有N个学生,每个学生的数据包括学号、姓名、3门课的成绩, 从键盘输入N个学生的数据,要求打印出3门课的总平均成绩, 以及最高分的学生的数据(包括学号、姓名、3门课成绩) 输…… 文章列表 2018年03月27日 6 点赞 1 评论 710 浏览 评分:0.0