编写题解 1009: [编程入门]数字的处理与判断 循环处理 摘要:参考代码:#include<stdio.h>#include<string.h>intmain(){&nbsp;&nbsp;charstr[6];&nb…… 题解列表 2021年03月05日 0 点赞 0 评论 110 浏览 评分:0.0
1970: 巨大的数 摘要:解题思路:注意事项:while(n--&&scanf("%d",&num))&nbsp;//利用短路功能,没有次数不会进行输入和循环参考代码:#in…… 题解列表 2021年03月05日 0 点赞 0 评论 160 浏览 评分:0.0
1955: 贷款计算 摘要:解题思路:注意事项:输出结果强转为int实现向下取整参考代码:#include&nbsp;<stdio.h>int&nbsp;main(){int&nbsp;mon…… 题解列表 2021年03月05日 0 点赞 0 评论 131 浏览 评分:0.0
全在代码中了 摘要:#include&nbsp;<string.h>#include&nbsp;<stdio.h>#include&nbsp;<stdlib.h>…… 题解列表 2021年03月05日 0 点赞 0 评论 336 浏览 评分:8.0
1977: 求中间数。排序后输出中间位 摘要:解题思路:排序后输出中间位注意事项:宏定义不明白就换成普通tab交换参考代码:#include&nbsp;<stdio.h>#define&nbsp;CHANGE(a,b)…… 题解列表 2021年03月05日 0 点赞 0 评论 234 浏览 评分:0.0
2008: C++函数重载练习 摘要:解题思路:注意事项:三目加括号参考代码:#include&nbsp;<iostream>#include&nbsp;<string>#include&n…… 题解列表 2021年03月05日 0 点赞 0 评论 355 浏览 评分:0.0
1978: 分类计算。输出时用?:判断 摘要:解题思路:输出时用?:判断注意事项:参考代码:#include&nbsp;<stdio.h>int&nbsp;main(){int&nbsp;a,b;scanf(&…… 题解列表 2021年03月05日 0 点赞 0 评论 106 浏览 评分:0.0
1988: 求总时间 摘要:解题思路:cost*=1.05注意事项:参考代码:#include&nbsp;<stdio.h>int&nbsp;main(){float&nbsp;cost=30…… 题解列表 2021年03月05日 0 点赞 0 评论 109 浏览 评分:0.0
1989: 奇数个数 摘要:解题思路:入门题一般定义一个长数组即可。比较字符数字-‘0’的ASCII码值注意事项:参考代码:#include&nbsp;<stdio.h>int&…… 题解列表 2021年03月05日 0 点赞 0 评论 133 浏览 评分:0.0
1999: 回文判断 摘要:解题思路:str[i]==str[len-1-i]恒成立就是回文数注意事项:初始化字符串str、累加数len、判断标记isPal参考代码:#include&nbsp;<stdio.h&g…… 题解列表 2021年03月05日 0 点赞 0 评论 315 浏览 评分:9.9