Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // AssTest5.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
- //
- #include <iostream>
- #include <cmath>
- using namespace std;
- int main()
- {
- const int n = 20;
- double res=0;
- for (double i = 1; i < n+1; i++) {
- res += 1 / (double)i;
- }
- cout << log(n) << "\n" << res;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement