Josif_tepe

Untitled

Dec 25th, 2025
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int x;
  6.     cin >> x;
  7.    
  8.     if(x % 3 == 0) {
  9.         cout << "NEMA OSTATOK" << endl;
  10.     }
  11.     else if(x % 3 == 1) {
  12.         cout << "OSTATOK 1" << endl;
  13.     }
  14.     else {
  15.         cout << "OSTATOK 2" << endl;
  16.     }
  17.    
  18.    
  19.     if(x % 4 == 0) {
  20.        
  21.     }
  22.     else if(x % 4 == 1) {
  23.        
  24.     }
  25.     else if(x % 4 == 2) {
  26.        
  27.     }
  28.     else {
  29.        
  30.     }
  31.    
  32.    
  33.     return 0;
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment