题解列表

筛选

P1074 (C++代码)

摘要:解题思路:注意事项:参考代码:暴力bfs:#include <iostream>   #include <stdio.h>   #include <queue>   #include <stri……

三角形的旗子 (C++代码)

摘要:解题思路:注意事项:参考代码:幼稚的题目:#include<cstdio> using namespace std; int main() { int a,b; scanf("%d",&……

排列 (C语言代码)

摘要:解题思路:注意事项:参考代码:/*输入第一行是一个整数N,表示数据的组数。每组数据占一行,代表四张卡片上的数字(保证四个数字都不同,且0<数字<10)。输出对每组卡片按从小到大的顺序输出所有能由这四张……

成绩转换 (C语言代码)

摘要:解题思路: 注意事项: 参考代码: /* 90~100为A;  80~89为B;  70~79为C;  60~69为D;  0~59为E; */ #include <stdio.h>……