站点C语言教程中数据类型和关键字中有疑问!!! 摘要:在本站中的C语言教程中,我在看数据类型和关键字的时候发现,在实形变量float/double的表示范围都在正数范围而没有负数,故发帖到博客给路过的大神参考一下,因为我刚开始接触C语言,希望确认一下是否…… 文章列表 2018年03月25日 0 点赞 0 评论 744 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.5(L1051) 摘要: 有N个学生,每个学生的数据包括学号、姓名、3门课的成绩, 从键盘输入N个学生的数据,要求打印出3门课的总平均成绩, 以及最高分的学生的数据(包括学号、姓名、3门课成绩) 输…… 文章列表 2018年03月27日 6 点赞 1 评论 630 浏览 评分:0.0
1007 摘要:#include<stdio.h> int main() { int x; scanf("%d",&x); if(x<1) printf("%d\n",x); …… 文章列表 2018年03月27日 0 点赞 0 评论 1287 浏览 评分: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 评论 1287 浏览 评分:9.9
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 评论 1026 浏览 评分:0.0
1001 摘要:#include<stdio.h> int main() { printf("**************************\nHello World!\n*************…… 文章列表 2018年03月27日 1 点赞 0 评论 1301 浏览 评分: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 评论 1413 浏览 评分: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 评论 926 浏览 评分:0.0
网上热传的2018刑侦题暴力破解 摘要: 最近,网上热传一份2018年刑侦试题,这套题也是让大家开了眼界,原来题目还能这样出。看到这套试卷之后,我心血来潮,经过一番艰苦的逻辑推理,终于也得出了正确答案。但是,为什么要让我们的人脑…… 文章列表 2018年03月27日 9 点赞 1 评论 692 浏览 评分:0.0
DemoVei-DNA (C代码) 摘要:#对于这道题最主要的是观察图形,从图形的规律上找突破口。#include<stdio.h> int main() { int N; scanf("%d",&N); w…… 文章列表 2018年03月27日 3 点赞 0 评论 693 浏览 评分:0.0