Advertisement
MeehoweCK

Untitled

Mar 1st, 2024
505
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.     std::cout << "Podaj 5 liczb calkowitych: ";
  5.     auto suma{ 0 };
  6.     for (auto i{ 0 }; i < 5; ++i) {
  7.         int liczba{};
  8.         std::cin >> liczba;
  9.         suma += liczba;
  10.     }
  11.     std::cout << "Suma podanych liczb wynosi " << suma << std::endl;
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement