题解列表

筛选

小九九 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a=1,b=1;    for (a;a<=9;a++)    {        for (b;b……

日期换算 (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……