请问没有与文件扩展名关联的编译工具什么意思,能指点我的出错点吗
#include <stdio.h>#include <math.h>
void main()
{
double x, s;
printf("input number:\n");
scanf("%1f", &x);
s = sin(x);
printf("sin of %1f is %1f\n", x, s);
} 本帖最后由 jackz007 于 2019-11-27 19:32 编辑
你的 C 源程序文件的扩展名是什么?有效的文件扩展名是 ".c" 和 ".cpp",不可以随意取 。 %1f
1f ->lf
问问题就问问题,干嘛扯上编译器。
我想你的想法是觉得你的代码没问题,你认为是编译器的问题????
页:
[1]