fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. double liczba;
  7. double suma = 0;
  8.  
  9.  
  10. cout << "Podaj ilość liczb: ";
  11. cin >> n;
  12.  
  13.  
  14. cout << "Podaj " << n << " liczb: \n";
  15. for (int i = 0; i < n; ++i) {
  16. cin >> liczba;
  17. suma += 1.0 / liczba;
  18. }
  19.  
  20. // Wyświetlenie wyniku
  21. cout << "Suma odwrotności wynosi: " << suma << endl;
  22.  
  23. return 0;
  24. }
  25.  
  26.  
Success #stdin #stdout 0.01s 5284KB
stdin
1
2
3
stdout
Podaj ilość liczb: Podaj 1 liczb: 
Suma odwrotności wynosi: 0.5