1267: A+B Problem题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<a+b…… 题解列表 2024年12月01日 3 点赞 0 评论 548 浏览 评分:9.9
[递归]母牛的故事 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int fun(int n){ if(n<=4) return n; else return fun(n-1)+fun(n-3);}in…… 题解列表 2024年12月01日 1 点赞 0 评论 318 浏览 评分:0.0
输出最高分数的学生姓名 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; scanf("%d",&n); int a[100]; char b[…… 题解列表 2024年11月30日 0 点赞 0 评论 215 浏览 评分:0.0
最简自然数的拆分 摘要:参考代码:#include <iostream> #include <stdlib.h> #include <stdio.h> #include <string.h> using namesp…… 题解列表 2024年11月30日 0 点赞 0 评论 446 浏览 评分:9.9
3086: 信息学奥赛一本通T1337-单词查找树 真阴啊这题 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个字符串数组,用于存储输入的字符串 string s[2000…… 题解列表 2024年11月30日 0 点赞 0 评论 143 浏览 评分:0.0
随便解释一下吧 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ char s1[201]={0} ,s2[201]={0} ; int i=0 ,a=0 ,c=…… 题解列表 2024年11月30日 0 点赞 0 评论 291 浏览 评分:10.0
基因相关性(简单易懂) 摘要:解题思路:注意事项:注意sum和n的类型。参考代码:#include<stdio.h>#include<string.h>int main(){ int i; double n,j,k; …… 题解列表 2024年11月30日 1 点赞 0 评论 380 浏览 评分:9.9
查找特定值(简单易懂!!!) 摘要:解题思路:注意事项:参考代码:#includeint main(){ int n,i,x; int count=0; int a[10000]; scanf("%d",&n);…… 题解列表 2024年11月30日 0 点赞 0 评论 273 浏览 评分:9.9
找树根和孩子 结构体 怎么感觉我把这题想难了 哈哈哈哈哈 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体sss,包含两个整数成员x和y struct sss{ …… 题解列表 2024年11月30日 0 点赞 0 评论 175 浏览 评分:0.0
编写题解 1997: 日期换算 摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{ public static void main(String[] args){ …… 题解列表 2024年11月30日 0 点赞 0 评论 183 浏览 评分:0.0