编写题解 2765: 计算分数的浮点数值 摘要:解题思路:计算正常数学中的除法(带余数)注意事项:将int类型强制转化成double类型即可参考代码:#…… 题解列表 2025年12月10日 0 点赞 0 评论 33 浏览 评分:0.0
求素数和,非常简单的方法 摘要:解题思路:旗帜法注意事项:函数内只有一个嵌套参考代码:#include<stdio.h>int isprime(int x){ if(x<2){…… 题解列表 2025年12月10日 1 点赞 0 评论 22 浏览 评分:0.0
Py2901-查找特定的值 摘要:n=int(input())m=list(map(int,input().split()))l=int(in…… 题解列表 2025年12月10日 0 点赞 0 评论 23 浏览 评分:0.0
1045: [编程入门]自定义函数之整数处理 摘要:_ueditor_page_break_tag_#include<stdio.h>void min(int *num){ int temp = num[0];&n…… 题解列表 2025年12月10日 0 点赞 0 评论 25 浏览 评分:0.0
1033: [编程入门]自定义函数之字符提取 摘要:#include<stdio.h>#include<string.h>voidfind_char(char*str,&n…… 题解列表 2025年12月10日 0 点赞 0 评论 36 浏览 评分:0.0
1044: [编程入门]三个字符串的排序 摘要:#include"stdio.h"#include"string.h"intmain(){&nb…… 题解列表 2025年12月10日 0 点赞 0 评论 35 浏览 评分:0.0
1010: [编程入门]利润计算 摘要:#include<stdio.h>intmain(){floatI,bonus;&nbs…… 题解列表 2025年12月10日 0 点赞 0 评论 37 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:#include<stdio.h>intshu(inta,intb){intc,d,max,min;max=(a>b)?a…… 题解列表 2025年12月10日 0 点赞 0 评论 49 浏览 评分:0.0
1754: 字符串排序 摘要:#include<stdio.h>#include<string.h>#include<stdlib.h>#defi…… 题解列表 2025年12月10日 0 点赞 0 评论 29 浏览 评分:0.0
1049: [编程入门]结构体之时间设计 摘要:#include <stdio.h>#include <string.h>#include<math.h>#define PI 3.1415int main(){ …… 题解列表 2025年12月10日 0 点赞 0 评论 36 浏览 评分:0.0