编写题解 1035: [编程入门]自定义函数之字符类型统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int tongji(char a[]) { int m,n,x,y; …… 题解列表 2022年08月10日 0 点赞 0 评论 390 浏览 评分:0.0
编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:用一个数组存放四位数的各个位上的数,再逆序输出注意事项:参考代码:#include <stdio.h> int kongge(int a) { int b[4]; …… 题解列表 2022年08月10日 0 点赞 0 评论 297 浏览 评分:0.0
不会简单的写法 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=list(map(int,input().split())) c=0 d=0 e=0 fo…… 题解列表 2022年08月10日 0 点赞 0 评论 463 浏览 评分:9.9
这种题还需要看题解吗? 摘要:解题思路:就循环注意事项:参考代码:for i in range(10,1001): if i%2==0 and i%3==0 and i%7==0: print(i)…… 题解列表 2022年08月10日 0 点赞 0 评论 557 浏览 评分:9.9
期望dp与乘法逆元 摘要:解题思路:简单的期望dp注意事项:乘法一定要防止long long越界参考代码:#include<bits/stdc++.h>//这道题自己曾经不会期望dp,不会逆元,所以考场做不出来。//现在自己靠…… 题解列表 2022年08月09日 0 点赞 1 评论 2163 浏览 评分:5.1
守望者的逃离 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,s,t;//魔法初值m,初始位置与岛的出口之间的距离s,岛沉没的时间t。 scanf("%d %d …… 题解列表 2022年08月09日 0 点赞 0 评论 395 浏览 评分:0.0
1676: 数据结构-链表的基本操作(待分析,分析明儿再说) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct Node { …… 题解列表 2022年08月09日 0 点赞 0 评论 431 浏览 评分:0.0
编写题解 1033: [编程入门]自定义函数之字符提取 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int fun(char a[],char b[]) { int l=s…… 题解列表 2022年08月09日 0 点赞 0 评论 334 浏览 评分:0.0
[编程入门]求和训练 常规做法 摘要:```c #include #include int main() { float a,b,c,i; float sum1=0,sum2=0,sum3=0; scanf("%f%f…… 题解列表 2022年08月09日 0 点赞 0 评论 411 浏览 评分:0.0
稍微变化的01背包 摘要:解题思路:看注释注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define maxn 2010#define maxm 10010int …… 题解列表 2022年08月09日 0 点赞 0 评论 786 浏览 评分:9.9