1011: [编程入门]最大公约数与最小公倍数 摘要:#include<stdio.h>intshu(inta,intb){intc,d,max,min;max=(a>b)?a…… 题解列表 2025年12月10日 0 点赞 0 评论 199 浏览 评分:0.0
1010: [编程入门]利润计算 摘要:#include<stdio.h>intmain(){floatI,bonus;&nbs…… 题解列表 2025年12月10日 0 点赞 0 评论 193 浏览 评分:0.0
1044: [编程入门]三个字符串的排序 摘要:#include"stdio.h"#include"string.h"intmain(){&nb…… 题解列表 2025年12月10日 1 点赞 0 评论 195 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:#include<stdio.h>#include<string.h>voidfind_char(char*str,&n…… 题解列表 2025年12月10日 0 点赞 0 评论 168 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理 摘要:_ueditor_page_break_tag_#include<stdio.h>void min(int *num){ int temp = num[0];&n…… 题解列表 2025年12月10日 1 点赞 0 评论 161 浏览 评分:0.0
Py2901-查找特定的值 摘要:n=int(input())m=list(map(int,input().split()))l=int(in…… 题解列表 2025年12月10日 0 点赞 0 评论 69 浏览 评分:0.0
求素数和,非常简单的方法 摘要:解题思路:旗帜法注意事项:函数内只有一个嵌套参考代码:#include<stdio.h>int isprime(int x){ if(x<2){…… 题解列表 2025年12月10日 1 点赞 0 评论 148 浏览 评分:0.0
编写题解 2765: 计算分数的浮点数值 摘要:解题思路:计算正常数学中的除法(带余数)注意事项:将int类型强制转化成double类型即可参考代码:#…… 题解列表 2025年12月10日 1 点赞 0 评论 108 浏览 评分:10.0
C语言简单方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define m 1000int main(){ int i,n,ma,a[m],s; s=0; scanf("…… 题解列表 2025年12月10日 0 点赞 0 评论 58 浏览 评分:0.0
30阶乘数列最优解 摘要:解题思路:注意事项:参考代码:a = 0b = 1for i in range(1, 31): b *= i a += bprint(f"…… 题解列表 2025年12月10日 1 点赞 0 评论 115 浏览 评分:10.0