I have this code for the program to test a for loop and continue statement in c.
#include <bits/stdc++.h>
using namespace std;
int main(){
for(int out=0; out<=100; out++)
{
if(out%3==0)
{
continue;
}
cout<<out;
}
}
When I try to run it in vs-code, it runs the previous code that I had before this. That previous code is about comparing three numbers and finding out the greatest out of the three. So it asks for the input of three numbers in the terminal. Now if I try to run it using the output screen, it says the code is already running. So what am I supposed to do here?