字符串中间和后边*号删除 摘要:解题思路:注意事项:参考代码:#include<string.h>#include<stdio.h> int fun(char *a) { int i…… 题解列表 2022年06月24日 0 点赞 0 评论 439 浏览 评分:0.0
两句话搞定 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; while (cin >> a) { cout << …… 题解列表 2022年06月24日 0 点赞 0 评论 1016 浏览 评分:9.9
1461: 蓝桥杯基础练习VIP-FJ的字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> void fun(char *a,char ls[]){ int len=strl…… 题解列表 2022年06月24日 0 点赞 0 评论 378 浏览 评分:0.0
1461: 蓝桥杯基础练习VIP-FJ的字符串(递归) 摘要:解题思路:注意事项:参考代码:def fun(n): if n==1: return 'A' else: return fun(…… 题解列表 2022年06月24日 0 点赞 0 评论 406 浏览 评分:0.0
编写题解 1020: [编程入门]猴子吃桃的问题——逆向思维 摘要:解题思路:逆向思维注意事项:参考代码:n=int(input())m=1for i in range(1,n): m=(m+1)*2print(m)…… 题解列表 2022年06月24日 0 点赞 0 评论 638 浏览 评分:0.0
尽量详细的解答 53行 内存1084 耗时0ms 摘要:随便写写,解释都写在代码里了。 ```cpp #include//输入输出用的 inline int read()//速读 习惯问题,可以用cin或scanf代替 { int x=0,f=1;…… 题解列表 2022年06月24日 0 点赞 0 评论 498 浏览 评分:9.9
剪刀石头布 摘要:解题思路:注意事项:参考代码:#include"stdio.h"enum leixing {shitou,bu,dao};enum shuying {shu=-1,ping,ying};int mai…… 题解列表 2022年06月23日 0 点赞 0 评论 1438 浏览 评分:0.0
结构体之成绩统计2 摘要:解题思路:写三个子函数,分别赋值,求平均,求最大注意事项:参考代码:#include"stdio.h"int n;struct{ char num[20]; char name[20]; …… 题解列表 2022年06月23日 0 点赞 0 评论 416 浏览 评分:0.0
结构体之成绩记录 摘要:解题思路:此处用的结构体数组,将结构体内容定义在主函数外面,这样子函数就能直接操作结构体的变量,分别用赋值函数与打印函数表述出注意事项:参考代码:#include"stdio.h"int n;stru…… 题解列表 2022年06月23日 0 点赞 0 评论 409 浏览 评分:0.0
链表合并,1052 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>struct Student{ int num; int score;};struct Node{ …… 题解列表 2022年06月23日 0 点赞 0 评论 341 浏览 评分:0.0