题解列表

筛选

汽水瓶:第二种解法

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int n,b,a,m,j=0; while(scanf("%d",&n……

超简单新手题解

摘要:解题思路:pow函数注意事项:参考代码:#i#include <stdio.h>int main() { int a,b,j; scanf("%d %d",&a,&b); j=pow(a,b); pr……

蓝桥杯2024年第十五届省赛真题-遗迹

摘要:## 知识点 动态规划。 ## 题面 小蓝找到了一个外星文明留下来的遗迹,遗迹大门的屏幕上有一个长度为m 的字符串 t 和一个输入框,下面还有一个键盘,键盘为一个长度为 n 的字符串 s ,由一……

直接写就得了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a,b,max=0;    scanf("%d",&a);    while(a)    {   ……

新人小白仅供参考

摘要:解题思路:注意事项:参考代码:#include <stdio.h>   int N; struct f{        char num[10];        char name[10];     ……