[编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:重点:怎么把整数转化为字符参考代码:#include <stdio.h>//写一函数,输入一个四位数字,要求输出这四个数字字符,但每两个数字间空格。如输入1990,应输…… 题解列表 2025年10月31日 0 点赞 0 评论 79 浏览 评分:0.0
易懂基础123456 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,c; scanf(&quo…… 题解列表 2025年10月31日 0 点赞 0 评论 49 浏览 评分:0.0
2849:石头剪刀布 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); char player1[…… 题解列表 2025年10月31日 0 点赞 0 评论 58 浏览 评分:0.0
题解2808买房子 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b;&n…… 题解列表 2025年10月31日 0 点赞 0 评论 49 浏览 评分:0.0
2848:基因相关性 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float std; scanf("%f",&std); char ar…… 题解列表 2025年10月31日 0 点赞 0 评论 43 浏览 评分:0.0
2847:找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[100000]; int i,j,sum=0; gets(arr); int le…… 题解列表 2025年10月31日 0 点赞 0 评论 53 浏览 评分:0.0
有没有·大佬看看 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>voidtiqu(char[]);intmain()…… 题解列表 2025年10月30日 0 点赞 0 评论 107 浏览 评分:0.0
2846:统计字符数组中的数字字符的个数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[255]; int i,count=0; gets(str); for(i=0;s…… 题解列表 2025年10月30日 0 点赞 0 评论 117 浏览 评分:0.0
2837:统计疾病与年龄的关系 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; scanf("%d",&n); int arr[n];…… 题解列表 2025年10月30日 0 点赞 0 评论 108 浏览 评分:0.0
2836:将数组中的元素逆序重排 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n; scanf("%d",&n); int arr[n];…… 题解列表 2025年10月30日 0 点赞 0 评论 98 浏览 评分:0.0