Sum of Digits of a Five Digit Number Discussions | C | HackerRank

Sum of Digits of a Five Digit Number

Sort by

recency

|

746 Discussions

|

  • + 0 comments
    #include<stdio.h>
    
    int main()
    {
        int n;
        scanf("%d", &n);
        
        int sum=0;
        
        while(n > 0)
        {
            sum = sum + n % 10;
            
            n = n/10;
        }
        
        printf("%d", sum);
    }
    
  • + 0 comments

    int main() {

    int n;
    scanf("%d", &n);
    int sum=0;
    int a,i;
    for(i=0;i=n;i++){
    a=n%10;
    sum=sum+a;
    n=n/10;
    }
    printf("%d",sum);
    return 0;
    

    }

  • + 0 comments

    int n; scanf("%d", &n); int sum=0; while(n>0) { sum+=n%10; n=n/10; } printf("%d",sum); return 0; }

  • + 0 comments

    //Complete the code

    int sum=0; while(n>0) { sum+=n%10; n=n/10; } printf("%d",sum);

  • + 0 comments

    int main() {

    int n;
    int sum=0;
    
    scanf("%d", &n);
    
    for(int i=0;i<5;i++){
        sum += n%10;
        n=n/10;
    }
    
    printf("%d",sum);
    return 0;
    

    }