Advertisement
mamamaria

Ass5

Feb 25th, 2021
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. // AssTest5.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
  2. //
  3.  
  4. #include <iostream>
  5. #include <cmath>
  6. using namespace std;
  7. int main()
  8. {
  9.     const int n = 20;
  10.     double res=0;
  11.  
  12.     for (double i = 1; i < n+1; i++) {
  13.         res += 1 / (double)i;
  14.     }
  15.  
  16.     cout << log(n) << "\n" << res;
  17. }
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement