当前位置:编程学习 > C/C++ >>

一个简单的C语言编程问题?

#include main() { double x,s; printf("input number:\n"); scarf("%lf",&x); s=sin(x); printf("sine of %lf is %lf\n",x,s); } 这个程序到底有什么问题啊,为什么总是说(包含指令中文件名格式不正确)?
答案:头文件:#include"stdio.h"
还有输入函数写错了:scanf()
其他:#include
后面内容呢?
#include<stdio.h> 头文件不对    #include<stdio.h> 晕,开始的头文件啊~~~~
#include<stdio.h>
#include<math.h> #include<stdio.h>
int main()
{
double x,s;
printf("input number:\n");
scarf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n",x,s);
return 0;
}
头文件不对,但是建议这么写 求一个九 九 乘法表利用c语言实现!!谢谢啦 #include #include<stdio.h>
#include<stdlib.h>
#include<math.h>
int main()
{
double x,s;
printf("input number:\n");
scanf("%lf",&x);
s=sin(x);
printf("sine of %lf is %lf\n",x,s);
system("pause");
return 0;
}
这是我改的
没有包括头文件,应该是scanf 第一行改成: #include "stdio.h"
第六行换用函数:scanf

上一个:谁告诉下这个题目C语言怎么写
下一个:学c语言来开发voip通信,有没有必要学单机片

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,