题解列表
2754基础解法(简短输出)
摘要:解题思路:类比2752,2753,理解使用sizeof函数即可注意事项:C语言(C99 之前)没有内置 bool 类型所以需要在头部添加声明#include <stdbool.h>参考代码……
2752基础解法(简短输出)
摘要:解题思路:题目:分别定义int,short类型的变量各一个,并依次输出它们的存储空间大小(单位:字节)。……
2781:奇偶ASCII值判断
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char ch; scanf("%c",&ch); if(ch%2==1……
3334: 蓝桥杯2025年第十六届省赛真题-园艺
摘要:#include<stdio.h>int main(){ int lh;//最后一棵树的高度 in……
编写题解 1169: 绝对值排序
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ while(1) &nb……
编写题解 1023: [编程入门]选择排序
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[10]={0}; for(……
编写题解 1129: C语言训练-排序问题(2)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number[10]={0}; for(……