fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main() {
  5. // Задаємо x як константу
  6. double x = 3.2;
  7.  
  8. // Обчислення виразу
  9. double U = cos(x) + sin(x);
  10.  
  11. // Вивід результату з 6 знаками після коми
  12. printf("U = %.6f\n", U);
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
U = -1.056669