[编程入门]实数的打印 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float num = 0; scanf(&qu…… 题解列表 2025年11月04日 0 点赞 0 评论 20 浏览 评分:0.0
1041: [编程入门]宏定义之找最大数 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define MAX(a, b, c)\{\ printf("%.3lf"…… 题解列表 2025年11月04日 0 点赞 0 评论 18 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char str[30…… 题解列表 2025年11月04日 0 点赞 0 评论 16 浏览 评分:0.0
整数序列的元素最大跨度值 ———— STL解法 摘要:解题思路:使用具有C++特色的vector<>容器来代替数组使用,同时使用迭代器,调用STL…… 题解列表 2025年11月04日 0 点赞 0 评论 14 浏览 评分:0.0
慢慢看,慢慢理解,你也能做到, 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int a=0,n=0;int answer=0;int main(){ …… 题解列表 2025年11月04日 0 点赞 0 评论 21 浏览 评分:0.0
一个for循环解决问题 摘要:解题思路:注意事项:参考代码:#include<math.h>#include<stdio.h>int main(){ int i,n,temp; d…… 题解列表 2025年11月04日 0 点赞 0 评论 16 浏览 评分:0.0
T1010-利润计算--步骤清晰 摘要:解题思路:注意事项:参考代码:l=int(input())bonus=0levels=[&n…… 题解列表 2025年11月04日 0 点赞 0 评论 20 浏览 评分:0.0
两个for循环嵌套+flag标志 摘要:解题思路:注意事项:i=2时,不满足内层循环条件,所以2可以被输出,不用再单独考虑2的情况了。参考代码:#include<stdio.h>int main(){ …… 题解列表 2025年11月04日 0 点赞 0 评论 9 浏览 评分:0.0
for循环嵌套加个if语句 摘要:解题思路:注意事项:为确保小的在前大的在后,加个逻辑判断语句。参考代码:#include<math.h>#include<stdio.h>int main(){ &…… 题解列表 2025年11月04日 0 点赞 0 评论 6 浏览 评分:0.0