fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. double f1;
  6. double f2;
  7. printf("실수 2개를 입력하세요: ");
  8. scanf("%lf %lf", &f1, &f2);
  9.  
  10.  
  11.  
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 5276KB
stdin
3.5 2.0
stdout
실수 2개를 입력하세요: