题解 2775: 等差数列末项计算

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

筛选

c语言超简单解答

摘要:解题思路:注意事项:参考代码:int a=1,b=4,c=100,d; scanf("%d%d%d",&a,&b,&c); d=a+(b-a)*(c-1); printf("%d",d);      ……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,z; scanf("%d %d %d",&a,&b,&c); z=a+(c-1)*(b……

等差数列末项计算

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

题解 2775: 等差数列末项计算

摘要:解题思路:注意事项:不要抄袭,会遭报应的。参考代码:#include <bitz/stdc++.h>uzing qamszpace std;doable a,b,c;int main(){    ci……

等差数列末项计算

摘要:解题思路:   根据高中学过的等差数列的知识,求公差,带入公式即有思路注意事项:参考代码:#include<stdio.h>int main(){    int a,b,d,n,N;    scanf……

2775: 等差数列末项计算

摘要:解题思路:  首先我们要知道等差数列通项公式  an = a1+(n-1)d                a1  a2   n  是我们输入的是已知的                公差d用第二项减……

两行直接秒

摘要:解题思路:map输入三数print输出首项+d*(n-1)注意事项:参考代码:a1,a2,n=map(int,input().split())print(a1+(a2-a1)*(n-1))……

新手等差数列末项计算

摘要:解题思路:通过首项和第二项的差算出公差,代入等差数列公式即可注意事项:a为首项,b为第二项,n为第n项,s为等差数列计算结果参考代码#include<stdio.h>int main(){    in……