【蟠桃记】 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年11月16日 0 点赞 0 评论 342 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:解题思路:先利用数学知识,求通项注意事项:参考代码:#include<stdio.h>int main(){ int str[30]={'\0'}; int i,n; str[2]=4…… 题解列表 2017年09月28日 0 点赞 0 评论 858 浏览 评分:0.0
【蟠桃记】 简单易懂 摘要:解题思路:注意事项:找出关系:前一天的数目=(后一天数目+1)*2;采用循环,注意循环次数参考代码#include<stdio.h>int main(){ int N,s,t; while(s…… 题解列表 2018年01月31日 0 点赞 0 评论 757 浏览 评分:0.0
题解 1171: 蟠桃记(Java) 摘要: import java.util.Scanner; public class Main { public static void main(String…… 题解列表 2021年02月25日 0 点赞 0 评论 254 浏览 评分:0.0
编写题解 1171: 蟠桃记 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while(cin>>n){ …… 题解列表 2022年03月28日 0 点赞 0 评论 266 浏览 评分:0.0
【蟠桃记】-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main(){ …… 题解列表 2020年03月03日 0 点赞 0 评论 298 浏览 评分:0.0
【蟠桃记】 (C语言代码) 摘要:解题思路:本来是用1解答的,参考别人的解题思路后觉得2更喜欢所以一起发了。注意事项:参考代码:1:#include<stdio.h>int main(){ int n,i,t=1; while(sca…… 题解列表 2017年11月27日 0 点赞 0 评论 919 浏览 评分:0.0
题目 1171: 蟠桃记解答 摘要:解题思路:a[n]=2*(a[n]+1)注意事项:别忘了if(n==1) result=1;这两行!参考代码:#includeusing namespace std; int f(int n){ …… 题解列表 2023年05月17日 0 点赞 0 评论 80 浏览 评分:0.0
1171: 蟠桃记 摘要:解题思路:从最后一天往前推注意事项:参考代码:while True: n=int(input()) s=1 for i in range(n-1): s=(s+1)*2…… 题解列表 2021年11月01日 0 点赞 0 评论 195 浏览 评分:0.0
C++超级简单的基础题解 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int sum = 1; int n; while …… 题解列表 2022年11月02日 0 点赞 0 评论 63 浏览 评分:0.0