{ float a, b, c, d; printf("Enter the value for a & b\n"); scanf("%f %f", &a, &b); // <-- see here. c = a + b; d = a * b; printf("The sum is ...
確定! 回上一頁