fork download
  1. #include <stdio.h>
  2. main()
  3. {
  4. printf("5+3=%f\n",5+3);
  5. printf("7*2-4의 결과는 %f입니다.\n", 7*2-4);
  6. printf("15나누기2의 결과는 %f입니다.\n", 15/2);
  7. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
5+3=0.000000
7*2-4의 결과는 0.000000입니다.
15나누기2의 결과는 0.000000입니다.