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

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