判断是否为两位数 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int x; scanf("%d",&x); if(0<x && x<=1…… 题解列表 2024年08月04日 0 点赞 0 评论 609 浏览 评分:0.0
整数大小比较 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int x,y; scanf("%d %d",&…… 题解列表 2024年08月04日 0 点赞 1 评论 924 浏览 评分:10.0
奇偶ASCII值判断 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { char ch; ch=getchar(); int num=ch; …… 题解列表 2024年08月04日 1 点赞 0 评论 667 浏览 评分:10.0
判断数正负 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int N; scanf("%d",&N); …… 题解列表 2024年08月04日 1 点赞 0 评论 1108 浏览 评分:9.9
++++++++++++++++++ 绝对值排序+++++++++++++++++++ 摘要:解题思路:/* 一. 在C语言中,按绝对值排序一组数通常意味着你需要先计算每个数的绝对值, 然后根据这些绝对值来排序原始数组(或复制一份进行排序以避免修改原始数据)。 *//* 二. …… 题解列表 2024年08月04日 0 点赞 0 评论 690 浏览 评分:9.9
分数线划定(简单结构体) 摘要:解题思路:定义结构-输入-冒泡排序-输出注意事项:注意划定分数线的人数m*1.5取整后,如果有重分的话需要重新计算入选人数参考代码:#include<stdio.h>typedef struct St…… 题解列表 2024年08月04日 1 点赞 0 评论 638 浏览 评分:0.0
--------------------字符串拼接------------------------------字符串倒序---------- 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include<string.h> void strcat_custom(char* dest, const char* …… 题解列表 2024年08月03日 0 点赞 0 评论 529 浏览 评分:9.9
自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,i; double M,Sn=0,An=0; scanf("%lf %d",&M,…… 题解列表 2024年08月03日 0 点赞 0 评论 347 浏览 评分:0.0
1049: [编程入门]结构体之时间设计——题解 ```c#includetypedefstruct{intyear,month,day;}YEAR;intmain(){YEARa;intday=0;scanf("%d%d%d",&a.year,&a.month,&a.day);if(a.year%4==0&&a.year%100!=0||a.yea 题解列表 2024年08月03日 0 点赞 0 评论 704 浏览 评分:9.9
[编程入门]自定义函数之字符串拷贝 题解 ```c#include#includevoidfun(charstr[],intn,intm){for(inti=n-1;i 题解列表 2024年08月03日 0 点赞 0 评论 746 浏览 评分:0.0