For12. Дано целое число $$N$$ ($$> 0$$). Найти произведение $$1.1 *1.2 * 1.3 *…$$ ($$N$$ сомножителей).
Решение от Дмитрия:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# include <iostream> # include <windows.h> # include <cmath> using namespace std; int main () { SetConsoleCP(1251); SetConsoleOutputCP(1251); int N; double p = 1; double a = 1.1; cout << "Введите число N: "; cin >> N; for (int i = 1; i<=N; ++i) { p *= a; a += 0.1; } cout << "Произведение чисел = " << p << endl; system ("pause"); return 0; } |
Другие задачи из раздела For можно посмотреть здесь.
Комментарии: