大小写转换 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; int i; while(g…… 题解列表 2017年09月08日 0 点赞 0 评论 1258 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题11.1 (C语言代码) 摘要:解题思路:先计算该月第一天是该年第几天,然后再根据该日为该月第几天,通过相加把最后结果计算出来。注意事项:注意闰年的计算参考代码:#include"stdio.h"typedef struct …… 题解列表 2017年09月08日 1 点赞 0 评论 1052 浏览 评分:0.0
ASCII帮了大忙 摘要:解题思路:1.将输入以字符串方式读取2.通过ASCII判断除了"."的每一个字符是否在0-9之间。注意事项:进行数字运算时要将字符型强制转换为整型。参考代码:#include <stdio.h>#in…… 题解列表 2017年09月09日 0 点赞 0 评论 1351 浏览 评分:0.0
printf基础练习2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(void) { int a; printf ("please en…… 题解列表 2017年09月10日 0 点赞 2 评论 536 浏览 评分:0.0
C语言训练-排序问题<1> (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,d; int t; scanf("%d %d %d %d",&a,&b,…… 题解列表 2017年09月11日 0 点赞 0 评论 931 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题4.9 (C语言代码) 摘要:解题思路:好多题目都是很坑爹的,结果输出的是正确的,但是最终确给出输出答案错误.注意事项:注意的是不要用printf给提示,不然会提示你输出答案不正确.参考代码:#include <stdio.h> …… 题解列表 2017年09月12日 0 点赞 0 评论 1300 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int x,y; scanf("%d", &x); if (x < 1) …… 题解列表 2017年09月12日 0 点赞 1 评论 1276 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.6 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { unsigned int num; scanf("%3d", &num); …… 题解列表 2017年09月12日 0 点赞 0 评论 952 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.7 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int inputNum,numArr[5],length; scanf("%…… 题解列表 2017年09月12日 0 点赞 0 评论 1076 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int profit; float bonus; scanf("%d…… 题解列表 2017年09月12日 0 点赞 0 评论 1420 浏览 评分:0.0