fork download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. int main()
  5. {
  6. float med;
  7.  
  8. printf("Por favor, digite uma medida.\n");
  9. scanf("%f",&med);
  10.  
  11. printf("%f%f%f",med/10,med/100,med/1000);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5444KB
stdin
Standard input is empty
stdout
Por favor, digite uma medida.
0.0000000.0000000.000000