Advertisement
mariusqw

Untitled

Apr 27th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <math.h>
  4. #include <iomanip>
  5.  
  6. using namespace std;
  7.  
  8. int main() {
  9.  
  10. cout << "1. 14 / 9 = " << 14 / 9 << endl;
  11. cout << "2. 32 / 4 = " << 32 / 4 << endl;
  12. cout << "3. 42 / 9 = " << 42 / 9 << endl;
  13. cout << "4. 14 / 25 = " << 14 / 25 << endl;
  14. cout << "5. 43 / 8 = " << 43 / 8 << endl;
  15. cout << "6. 19 % 9 = " << 19 % 9 << endl;
  16. cout << "7. 32 % 4 = " << 32 % 4 << endl;
  17. cout << "8. 42 % 6 = " << 42 % 6 << endl;
  18. cout << "9. 55 % 9 = " << 55 % 9 << endl;
  19. cout << "10. 35 % 5 = " << 35 % 5 << endl;
  20.  
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement