Advertisement
Josif_tepe

Untitled

Nov 5th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.75 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int n;
  6.    
  7.     int prethoden_broj;
  8.     int dali_sme_na_prviot_broj = 1;
  9.    
  10.     int strogo_rastecka_niza = 1;
  11.     while(cin >> n) {
  12.         if(n <= 0) {
  13.             break;
  14.         }
  15.        
  16.         if(dali_sme_na_prviot_broj == 1) {
  17.             prethoden_broj = n;
  18.             dali_sme_na_prviot_broj = -1;
  19.         }
  20.         else {
  21.             if(n <= prethoden_broj) {
  22.                 strogo_rastecka_niza = 0;
  23.             }
  24.             prethoden_broj = n;
  25.         }
  26.        
  27.     }
  28.    
  29.     if(strogo_rastecka_niza == 1) {
  30.         cout << "Strogo rastecka" << endl;
  31.     }
  32.     else {
  33.         cout << "Ne e strogo rastecka" << endl;
  34.     }
  35.    
  36.    
  37.     return 0;
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement