题解 2544: N以内累加求和

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

筛选

N以内累加求和 2544

摘要:解题思路:#include<bits/stdc++.h>using namespace std;int n;int main(){cin>>n;int s=(1+n)*n/2;cout<<s;}注意事……

累加求和简短版

摘要:解题思路:注意事项:sum一定要初始化为0参考代码:#include<stdio.h>int main(){ int n,sum=0; scanf("%d",&n); int i; for(i=1;i……

2544: N以内累加求和(高斯)

摘要:##N以内累加求和(高斯) ####还记得那个口号吗? ######首项加末项乘以项数除以二,我记得我上小学奥数第一节课教的就是这个,好怀念:tw-1f31f: ```c #include ……

N以内累加求和

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

N以内累加求和

摘要:解题思路:就是一个简单的循环注意事项:参考代码#include<stdio.h>int main(){    int a,b;    scanf("%d",&a);    int i;    b=0;……