ユーザがキーボードから浮動小数点数を入力し、その数値の平方根を表示するCプログラムを記述することが問題です。私は間違って何をしていますか?浮動小数点数のSqrt
#include <stdio.h>
#include <math.h>
int main(int argc, char *argv[])
{
double x, result;
printf("Enter a positive number.\n");
scanf("&f", &x);
result = sqrt(x);
printf("The square root of %f is %f.\n", x, result);
return 0;
}
'&F'' scanf'形式のコードではありません... – ShadowRanger
'のscanf("&F "、&x);' - > 'if(scanf("%lf "、&x)!= 1)Handle_Error()';%not&lf、not f、結果を確認 – chux