Advertisement
Qellex

Untitled

Nov 11th, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1. #include "stdio.h"
  2. #include "locale.h"
  3. #include "math.h"
  4.  
  5.  
  6.  
  7. void main() {
  8.  
  9.     setlocale(LC_ALL, "rus");
  10.  
  11.     int n, count = 0, sum = 0; // число, кол-во, сумма
  12.     printf("Введите N:  ");
  13.     scanf_s("%d", &n);
  14.  
  15.     while (n > 0) {
  16.         count++;
  17.         sum += n % 10;
  18.         n = n / 10;
  19.     }
  20.  
  21.     printf("Кол-во цифр в числе: %d\nСумма цифр: %d", count, sum);
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement