Difficulty: Very Easy
Time to solve: 1-2 min
Video this is covered in: 1-15
#include <iostream>
using namespace std;
int main(){
for (int i=0; i<100; i++){
cout << i;
if ((i % 25)=0){
break;
}
}
return 0;
}
Error MessageTesting.cpp:8: error: non-lvalue in assignment