题解列表
蓝桥杯基础练习VIP-时间转换 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ long int t; scanf("%ld",&t); long int ……
A+B for Input-Output Practice (IV) (C语言代码)
摘要:解题思路:知道你们都会,就是看着没有JAVA的题解,感觉不是太好,身为菜鸟的我补上。注意事项:比着葫芦画瓢。参考代码:import java.util.Scanner;public class 问题1……
蓝桥杯算法提高VIP-分数统计 (C++代码)
摘要:写的不好,见谅!参考代码:#include <iostream>
#include <algorithm>
using namespace std;
bool cmp(int a,int b)
……
陶陶摘苹果 (C语言代码)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>void count(int arr[11]);int main(){ int arr[11],i=0; while(sca……
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)(冒泡法)
摘要:解题思路:注意事项:参考代码:/*输入三个整数,按由小到大的顺序输出。*/#include <stdio.h>int main(void){ int a[3]; int i,j,jh;……
蓝桥杯算法提高VIP-任意年月日历输出 (C++代码)
摘要:参考代码:#include <iostream>
#include <iomanip>
using namespace std;
int a[12]={31,28,31,30,31,30,31,……
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)
摘要:解题思路:注意事项:参考代码:/*输入一行电报文字,将字母变成其下一字母(如’a’变成’b’……’z’变成’a’其它字符不变)。*/#include <stdio.h>int main(){ ……
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)
摘要:解题思路:注意事项:参考代码:/*分别用函数和带参的宏,从三个数中找出最大的数。*/#include <stdio.h>#define MAX(a,b,c) a>b?(a>c?a:c):(b>c?b:……
青年歌手大奖赛_评委会打分 (C语言代码)
摘要:#include <stdio.h>int main(){ int i,j,t,n; int a[100]; double s; while(scanf("%d",&n……