题解 1013: [编程入门]Sn的公式求和

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

筛选

小白可看懂的一个for解决的最简单的暴力算法

摘要:解题思路:简简单单,一看就懂,不需要过多解释,巧妙的用一个if解决首项不能用for打出来的情况,暴力算法。注意事项:vs2019的scanf要加_s,其他的看情况吧参考代码:#include <std……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main {   public static void main(String[] args)    ……

容易理解如何解决Sn求和问题

摘要:解题思路:从第二项开始后一项为前一项的10倍后加上前一项注意事项:需要包含#include<math.h>函数参考代码:#include<stdio.h>#include<math.h>int mai……

1013sn的公式求和

摘要:解题思路:要善于发现2,22,222.....之间的规律每次都是拿前面的数乘10再加2注意事项:参考代码:#include<stdio.h>int main(){ int a=2,n,sum=0; s……

直接写就行了

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {      int i,j=0,n,Sn=0;     scanf……

Sn的求和公式

摘要:解题思路:把每一项拆开来看,可看做一个等比数列的和,在对这些项用一个for循环从而求出Sn注意事项:参考代码:#include#includeint main() { /*求Sn=a+aa+aaa……

新手简单易懂

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

一个刚刚开始刷题的菜鸟!!

摘要:解题思路:仔细观察,将这个数列构造出来就行了;注意事项:参考代码:#include<iostream> using namespace std;int main(){ int n,sum=0; int……

[编程入门]Sn的公式求和

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