fork download
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5. float a;
  6. int b = int(a);
  7. scanf("%f", &a);
  8. printf("%d", b);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5512KB
stdin
1.5
stdout
Standard output is empty