fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. double a, b;
  5. printf("กรุณากรอกตัวเลขที่ 1 : ");
  6. scanf("%lf", &a);
  7. printf("กรุณากรอกตัวเลขที่ 2 : ");
  8. scanf("%lf", &b);
  9. printf("%.2lf + %.2lf = %.2lf", a, b, (a+b));
  10. return 0;
  11. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
กรุณากรอกตัวเลขที่ 1 : กรุณากรอกตัวเลขที่ 2 : 0.00 + 0.00 = 0.00