编写题解 2922: 合影效果,写的太差了,望指正 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>typedef struct{ char xb[8]; float high;}stu;…… 题解列表 2022年11月24日 0 点赞 0 评论 393 浏览 评分:9.9
废物废物废物废物废物废物废物是我 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[20]; fgets(str,20,stdin…… 题解列表 2022年11月24日 0 点赞 3 评论 695 浏览 评分:9.9
20221124The 3n + 1 problem 摘要:解题思路:注意事项:输入&a,&b不确定其大小参考代码:#include <stdio.h>long len(long n){ long c=1; while(n!=1) { if (n%2==0…… 题解列表 2022年11月24日 0 点赞 0 评论 219 浏览 评分:0.0
我是硬解的废物 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n,p1=0,p2=0; char s1[10],s2[…… 题解列表 2022年11月24日 0 点赞 0 评论 467 浏览 评分:7.3
一个采购唯一会的才方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char ch[100000]; fgets(ch,99999,…… 题解列表 2022年11月24日 0 点赞 0 评论 277 浏览 评分:0.0
深度优先搜索(C语言) 摘要:求助!运行错误55,不知道哪错了,大佬帮忙找找bug参考代码:#include<stdio.h> #include<stdlib.h> //#include<string.h> //字符串操作文件…… 题解列表 2022年11月24日 0 点赞 0 评论 314 浏览 评分:9.9
蓝桥杯算法训练-2的次幂表示-主要记录一下自己花了很长时间的复杂方法 摘要:解题思路:注意事项:参考代码:from math import *# 生成正常的列表def func1(m): list1=[] while 1: a=int(log(m,2…… 题解列表 2022年11月24日 0 点赞 0 评论 220 浏览 评分:0.0
约瑟夫环——用循环链表来解决 摘要:```java package ACM; import java.util.Scanner; public class ACMJosepfu { public static vo…… 题解列表 2022年11月24日 0 点赞 0 评论 279 浏览 评分:9.9
编写题解 2819: 数字反转 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int n,m=0; cin>>n; while(n){ m=m*10+n%10;//每…… 题解列表 2022年11月24日 0 点赞 3 评论 320 浏览 评分:2.0
DP三角形题解 摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Main { public static…… 题解列表 2022年11月24日 0 点赞 0 评论 278 浏览 评分:9.9