Advertisement
35657

Untitled

Jan 27th, 2024
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1.  
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8.     setlocale(LC_ALL, "ru");
  9.  
  10.     int total, unit;
  11.  
  12.     cout << "Введите общее количество ткани: ";
  13.     cin >> total;
  14.  
  15.     cout << "Введите количество ткани на единицу: ";
  16.     cin >> unit;
  17.  
  18.     int count = 0;
  19.  
  20.     while (total >= unit) {
  21.         total -= unit;
  22.         count++;
  23.     }
  24.  
  25.     cout << count << endl;
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement