Записать в с++ a=sin 2/x + 1/3cos 4/x-3/x+1/5 я написала так, но мне кажется, считает неверно: # include # include main (void) { float x, y ; printf ("vvedite peremennuju 'x'\n"); y = sin(2/x)+1/3*cos(4/x)-3/x+1/5; scanf ("%f", & x); printf ("%f" , y); return 0; }
# include math.h
# include stdio.h
# include conio.h
main (void) {
float x, y ;
printf ("Vvedite peremennuju 'X'\n");
scanf ("%f", &x); - сначала нужно считать переменную
y = sin(2/x)+1/3*cos(4/x)-3/x+1/5;
printf ("%f" , y);
return 0; }