“suma n naturalnych liczb w c” Kod odpowiedzi

cyfrowa liczba sum w c

#include <stdio.h>

int main() {
    int number;
    int sum=0,reminder;
    printf("enter the number:");
    scanf("%d",&number);
    while (number>0){
        rem=number%10;
        sum=sum+rem;
        number = number/10;
    }
    printf("%d",sum);
}
Strange Seal

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 w c”

Pytania podobne do “suma n naturalnych liczb w c”

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

Przeglądaj inne języki kodu