🟢 Վարժություն 15

Փորձե՛ք առանց ծրագիրը աշխատացնելու պատասխանել, թե ի՞նչ կտպի ծրագիրը։
#include <iostream>
int main() {
   int i = 0;
   while (i < 5) {
      i++;
      if (i > 2) {
          continue;
      }
      std::cout << i << " ";
   }
   
}
 
 
 
To check your solution you need to sign in
Sign in to continue