Facebook
From fffffff, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 49
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3. #include <math.h>
  4. int main() {
  5.     int numero;
  6.     int i=4;
  7.     int resto;
  8.     printf("Scrivi numero 5 cifre\n");
  9.     scanf("%d",&numero);
  10.      while(i>=0){
  11.         resto=numero/(pow(10,i));
  12.         numero=numero-resto*pow(10,i);
  13.         printf("%d ",resto);
  14.         i--;
  15.     }
  16.     return 0;
  17. }