va rog corectati greselile​

Va Rog Corectati Greselile class=

Răspuns :

Răspuns:

Codul corect:

#include<iostream>

using namespace std;

int main()

{

   int i=2;

   while(i<=100)

   {

       if(i%2==0)

           cout<<i<<" ";

   }

   return 0;

}

Explicație:

#include <iostream>

using namespace std;

int main(){

int i = 2;

while (i <= 100) {

if ( i % 2 == 0 ) cout << i << " ";

}

return 0;

}