📜  对 c 中的数字求和 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:55.285000             🧑  作者: Mango

代码示例2
//program to find the sum of digits:

#include
int main()
{
  int num,sum=0,r,temp;
  printf("Enter the number:\n ");  //taking input from the user
  scanf("%d",&num);
  
  temp=num;           //assigning num to temporary variable
  
  while(temp!=0)
  {
    r=temp%10;
    sum=sum+r;
    temp=temp/10;
  }
  printf("\nGiven number = %d",num);
  printf("\nSum of the digits = %d",sum);
}