题解列表

筛选

2038: 简化型背包,暴力搜索

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义全局变量v, m和h,并初始化h为-1 int v,m,h=-1……

最简单易懂的解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <ctype.h>#include <string.h>int main(){    char a[80];    ……

1915无题.。。。

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main (){ int a[666],b;  for (int i = 0;i < 3;i++……

良心出品,放心食用

摘要:解题思路:这段代码定义了一个数组  A  ,并通过循环计算出  N  在一定范围内(小于 55)时对应的某种数量值  A[N - 1]  ,然后根据输入的  N  值输出相应的结果。在代码中,首先初始……

已是最短了,请放心食用

摘要:解题思路注意事项:参考代码:#include<stdio.h>#include<string.h>int  PalindromeString(char *s)//写一个函数来得到每一轮的结果,返回一个……

简短且简单

摘要:解题思路:1. 首先包含了 <stdio.h> 和 <string.h> 头文件,用于输入输出和字符串操作。2. 在 main 函数中,定义了一个字符数组 str 来存储输入的字符串,以及一个整数 f……

简易链表求和

摘要:解题思路:注意事项:函数名是拼音,英语不好参考代码:#include <stdio.h>#include <stdlib.h>typedef struct node{    int s;    int……

1987考试评级,无题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int t; while(scanf("%d", &t) != EOF) switch(t/10) { ca……

普普通通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main (){ int x,y;  scanf("%d",&x);  if (x<3)  {  y = 2*x;  }  e……