题解 1171: 蟠桃记

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

【蟠桃记】 (Java代码)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

【蟠桃记】 (C语言代码)

摘要:解题思路:先利用数学知识,求通项注意事项:参考代码:#include<stdio.h>int main(){ int str[30]={&#39;\0&#39;}; int i,n; str[2]=4……

【蟠桃记】 简单易懂

摘要:解题思路:注意事项:找出关系:前一天的数目=(后一天数目+1)*2;采用循环,注意循环次数参考代码#include<stdio.h>int main(){   int N,s,t;   while(s……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int n;    while(cin>>n){        ……

【蟠桃记】 (C语言代码)

摘要:解题思路:本来是用1解答的,参考别人的解题思路后觉得2更喜欢所以一起发了。注意事项:参考代码:1:#include<stdio.h>int main(){ int n,i,t=1; while(sca……

题目 1171: 蟠桃记解答

摘要:解题思路:a[n]=2*(a[n]+1)注意事项:别忘了if(n==1) result=1;这两行!参考代码:#includeusing namespace std; int f(int n){ ……

1171: 蟠桃记

摘要:解题思路:从最后一天往前推注意事项:参考代码:while True:    n=int(input())    s=1    for i in range(n-1):        s=(s+1)*2……

C++超级简单的基础题解

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int sum = 1;    int n;    while ……