fork download
  1. #include <cstdio>
  2.  
  3. int main() {
  4. int bil1, bil3;
  5. double bil2;
  6.  
  7. printf("%d\n%.2f\n%d\n", bil1, bil2, bil3);
  8.  
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5284KB
stdin
10
20.1235
30
stdout
0
0.00
0