Skip to content

Instantly share code, notes, and snippets.

@savaryna
Last active September 2, 2019 20:21
Show Gist options
  • Save savaryna/48a0cc782d8024a942d6 to your computer and use it in GitHub Desktop.
Save savaryna/48a0cc782d8024a942d6 to your computer and use it in GitHub Desktop.
#include <conio.h>
#include <stdio.h>
#include <math.h>
// Calculeaza y, cu ajutorul lui math.h
void main (){
double x,y;
printf ("Introduceti un numar real: ");
scanf("%lf", &x);
y=((1/tan(x))+x)/(pow(3,x)-9*x);
printf("y=%8.3lf", y);
printf("\n");
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment