Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<math.h>
- int main() {
- double x, y,T;
- printf_s("podaj x i y: ");
- scanf_s("%lf %lf", &x, &y);
- if (y < 3 && x>5)
- {
- printf_s("Brak rozwiazania");
- return 0;
- }
- T = ((log(x - 5) + 1) / (sqrt(y - 3)));
- printf_s("%lf", T);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment