#include
void main()
{
double x, s;
printf("input number:\n");
scanf("%lf",&x); '&打成了中文标点
s=sin(x);
printf("sine of %lf is %lf\n",x ,s);
}