题解 1171: 蟠桃记

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

筛选

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a, sum, j; sum = 1, j = 0; while (scanf("%……

稍微认真解释一下吧,我觉得前辈们写的挺好,但我再详细分析解释一下吧,我再熟悉熟悉问题

摘要:解题思路:   题目分析过程【 我这题卡了好久(捂脸),然后看了大神的题解我才知道,原来我题目分析理解错了(捂脸)】【当你有解题思路的时候,而且你肯定你的解题思路没问题,那你就应该要怀疑你题目意思是不……

蟠桃记-题解(C++代码)

摘要:解题思路:找规律来推断通式注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; while(scanf("%d……

【蟠桃记】 (C++代码)

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

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

摘要:解题思路:注意事项:参考代码:# include<stdio.h>int main(){int i,n,sum=1;printf("请输入一个正整数n(1<n<30)\n");scanf("%d",&……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int jisuan(int n);int main(){    int n,x;    while(scanf("%d",&n)==1……

编写题解 1171: 蟠桃记

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