新人代码错误求助 诚心求解答
新人求助,我想问一下我这段代码有什么问题#include <stdio.h>
#include <math.h>
void main()
{
double x, s;
printf("input number:\n");
scanf("%If", &x);
s=sin(x);
printf("sin of %If is %If\n", x, s);
}
为什么敲出来永远是 sin of if is if
在线等 诚心求大佬解答 scanf参数错误,是%lf,不是%If
printf同理 qiuyouzhi 发表于 2020-3-2 16:27
scanf参数错误,是%lf,不是%If
printf同理
谢谢 ,是小写的l吗 视频没看仔细 一直以为是 if whoskkkbjw 发表于 2020-3-2 16:29
谢谢 ,是小写的l吗 视频没看仔细 一直以为是 if
对的
页:
[1]