题解列表

筛选

日期换算 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int x,y,sum=0,i,a[12]={31,28,31,30,31,30,31,31,30,31,30,……

EXCEL排序 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<bits/stdc++.h>#include<cstdio>#include<cstring>#include<al……

蓝桥杯算法提高VIP-分苹果 (C语言代码)

摘要:解题思路:小白一个,用的循环来做,第一位老师是从第几个学生开始到第几个学生,然后用count[j]+=C[j]计算;输出结果正确,但是提交显示运行错误,求解注意事项:参考代码:#include<std……

字符排序 (C语言代码)

摘要:解题思路:稍微改一下冒泡排序,我觉得这道题出的不好,没把空格算进去注意事项:参考代码:#include<stdio.h>#include<string.h>void bubble_sort(char*……