题解列表
选择排序的大材小用(不要学我)
摘要:#include<stdio.h>
#include<string.h>
int main(void)
{
char a[3][100], temp[100];
int fl……
从后面移动,并保存消失的后面
摘要:解题思路:#include<stdio.h>
int main(void)
{
int i, j, n, a[100], move;
scanf("%d", &n);
……
编写题解 2997: 梯形面积
摘要:```cpp
#include
using namespace std;
int main()
{
double e;
e=150*2/15*(15+25)/2;
……
谁考了第k名 C++
摘要:```cpp
#include
using namespace std;
// 定义学生结构体
struct Student {
int id; // 学号
……
一定要细心啊(不难)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>
int main(void)
{
int n;
printf("Please enter the number……