“suma n naturalnych liczb” Kod odpowiedzi

suma n naturalnych liczb

//Created by https://ashif.in

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n;
	cin>>n; //Take Input
	
  	int sum = n*(n+1)/2;    //Calculate Sum
  	
	cout<<sum;		//Print Sum
  
	return 0;
}
Ashif Ali

suma n naturalnych liczb w c

int addNumbers(int n)
{
    int count, sum = 0;

    for(count=1; count <= n; count++)
    {
        sum = sum + count;
    }
  
    return sum;
}
Zealous Zebra

Odpowiedzi podobne do “suma n naturalnych liczb”

Pytania podobne do “suma n naturalnych liczb”

Więcej pokrewnych odpowiedzi na “suma n naturalnych liczb” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu