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

Տրված ծրագրում ավելացրեք կոդի հատվածն այնպես, որ ցիկլի աշխատանքը դադարեցվի երբ i==5։
#include <iostream>
int main() {
   int i = 0;
   while (i  < 10) {
     
      if (i == 5) {
          /* Put your code here */
      }
      i++;
   }
   std::cout << i;
}
 
 
 

Constraints

Time limit: 0.2 seconds

Memory limit: 512 MB

Output limit: 1 MB

To check your solution you need to sign in
Sign in to continue