c语言
我按屏幕打后总出现这个是啥意思呀,麻烦各路大佬帮忙解答一下,万分感谢!test2.c:3:1: warning: return type defaults to 'int'[ -Wimplicit- int ]
main( )
A~~ ~
test2.c: In function ' main' :
test2.c:6:5:error: expected
asm
attribute ' before 'pr intf'
pr intf("input number :/n" ):
A~~ ~~ ~
test2.c:5:12: warning: unused variable 'x' [-Wunused-variable]
double x,s 你要把代码文本贴出来,别人又不是神仙,谁知道你究竟写了些什么。 函数名: pr intf ?
另外用了asm?c和汇编的混合编程?没源码谁知道 jackz007 发表于 2021-3-13 00:42
你要把代码文本贴出来,别人又不是神仙,谁知道你究竟写了些什么。
#include<math.h>
#include<stdio.h>
void main()
{
double x,s;
printf("input number\n");
scanf("%1f",&x);
s=sin(x);
printf("sine of %1f is %1f\n",x,s);
} yerah 发表于 2021-3-13 14:24
#include
#include
void main()
这个
麻烦了谢谢! yerah 发表于 2021-3-13 14:24
#include
#include
void main()
sin呢,应该丢了一个sin函数调用吧 #include <stdio.h>
#include <math.h>
#define PI 3.14159265358979323846264338327950288f
int main(void)
{
int x ;
printf("input number : ") ;
scanf("%d" , & x) ;
printf("sin(%d) = %lf\n" , x , sin(x * PI / 180.0f)) ;
}
编译、运行实况:
D:\00.Excise\C>g++ -o x x.c
D:\00.Excise\C>x
input number : 30
sin(30) = 0.500000
D:\00.Excise\C>x
input number : 60
sin(60) = 0.866025
D:\00.Excise\C>
页:
[1]