题解列表
不能完全通过,最好情况通过67.仅供学习参考
摘要:
# 题目 3166: 蓝桥杯2023年第十四届省赛真题-阶乘的和--不能完……
题解 2780: 奇偶数判断
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a%2==0) { printf("even\n"); }……
去掉空格(c语言代码)
摘要:```c
#include
#include
void removeblank(char* s);
int main()
{
char strs[101] = { 0 };
wh……
二级C语言-统计字符
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main()
{
int zimu=0,num=0,kon=0,oth=0;
char c;
……
留住了塔没留住她:[编程入门]三个数最大值
摘要:解题思路: 学过C++都知道,C++有一个函数叫做“max( 变量A , 变量B );”它可以让我们得出变量A 变量B的最大值 所以我们可以使用这个函数。注意事项: 注意:不管你学了……