1005答案错误为什么 摘要:/*输入一个华氏温度,要求输出摄氏温度。公式为c=5(F-32)/9,取位2小数。*/#include<stdio.h>intmain(){&nbsp;floatc,f;&…… 文章列表 2017年11月03日 1 点赞 1 评论 1990 浏览 评分:0.0
快速排序算法1 摘要:#include<stdio.h>#define&nbsp;SWAP(x,y)&nbsp;{int&nbsp;t;t=x;x=y;y=t;}#define&…… 文章列表 2017年11月02日 1 点赞 0 评论 1041 浏览 评分:0.0
10月月赛题解 摘要:大家好,我是本场的月赛出题人Occult闲来无事为C语言网免费贡献了这一套题,不知道大家觉得这套题如何不过就结果而言好像难度略高了,这个锅我背了,一出题就控制不住自己了。前几天正好赶上我外出比赛,于是…… 文章列表 2017年10月31日 13 点赞 1 评论 556 浏览 评分:9.9
排序算法(选择,插入,冒泡) 摘要:#include<stdio.h>#define&nbsp;SWAP(x,y)&nbsp;{int&nbsp;t;t=x;x=y;y=t;}//选择排序法:/*将要…… 文章列表 2017年10月29日 6 点赞 0 评论 925 浏览 评分:0.0
1392题解(大数相加) 摘要:#include<stdio.h>#include<string.h>#include<math.h>#define&nbsp;IndexMax&n…… 文章列表 2017年10月29日 2 点赞 0 评论 688 浏览 评分:0.0
1162答案错误,为什么 摘要:#include&nbsp;<stdio.h>#include&nbsp;<string.h>int&nbsp;judge(char&nbsp;…… 文章列表 2017年10月27日 3 点赞 0 评论 715 浏览 评分:0.0
1231题解(注意理解“输入多个测试实例”) 摘要://注意题目要求:输入数据包含多个测试实例#include&nbsp;<stdio.h>int&nbsp;Ytriangle(int&nbsp;n){int&…… 文章列表 2017年10月27日 4 点赞 0 评论 902 浏览 评分:0.0
1134题解(求分析) 摘要://谁能分析一下这两种求值顺序对结果的影响#include<stdio.h>#include<math.h>int&nbsp;main(){double&nbs…… 文章列表 2017年10月25日 2 点赞 0 评论 896 浏览 评分:0.0
1052题解(链表操作) 摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>//定义一个结点,可视为链表的最小单元,包括两要素:指针域…… 文章列表 2017年10月25日 1 点赞 0 评论 844 浏览 评分:0.0