Advertisement
Ewerlost

Lab2_C++

Sep 23rd, 2023 (edited)
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <clocale>
  3. using namespace std;
  4. int main() {
  5.     int Price = 14;
  6.     setlocale( LC_ALL, "Russian" );
  7.     cout << "Эта программа выведет таблицу стоимости порций сыра в рублях" << "\n";
  8.     for (int i = 1; i < 21; i++) {
  9.         cout << Price << " ";
  10.         Price += 14;
  11.         if ( i % 5 == 0 )
  12.             cout << "\n";
  13.     }
  14.     return 0;
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement