fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3. //AYDA FILICHE 4SC
  4. //FUNZIONE SIN DA ANGOLO IN GRADI
  5. int main(void) {
  6. double ang, fun, rad;
  7. scanf ("%lf", &ang);
  8. rad = ang*(3.14/180);
  9. fun = sin(rad);
  10. printf ("il seno di %2.f gradi è %2.f", ang,fun);
  11. return 0;
  12. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
il seno di  0 gradi è  0