从键盘任意输入一个实数,不使用计算绝对值函数编程计算并输出该实数的绝对值。 按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。 1. #include 2. int main() 3. { 4. float x; 5. printf("Input a float number:"); 6. scanf("%f", &x); 7. 8. ______________; 9. 10. printf("Absolute value of x is %f\n", x); 11. return 0; 12. }