Advertisement
avr39ripe

cppDaysTofullWeeksConverter

Apr 3rd, 2021
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.     const int daysInWeek{ 7 };
  6.     int days{ 0 };
  7.     int weeks{ 0 };
  8.  
  9.     std::cout << "Enter days to convert:\n";
  10.     std::cin >> days;
  11.  
  12.     weeks = days / daysInWeek;
  13.     days %= daysInWeek;
  14.  
  15.     std::cout << weeks << " full weeks and " << days << " days\n";
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement