0
Plz chech the code
2 Answers
+ 2
thx
+ 1
#include <iostream>
using namespace std;
int main()
{
int b; // int=b is wrong
cin>>b;
while (b < 6) {
cout << "Number: " << b << endl;
b = b + 1;
}
return b;
}