You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
int main(void)
{
for (int i = 0; i <= 1000; i += 100) // Do Not Edit This Line
{
// Edit What You Need And Add Your Code
if(i == 0 || i == 1000 || i == 500)
{
continue;
}
std::cout << i << "\n";
}
return 0;
}`
The text was updated successfully, but these errors were encountered:
ZEYAD-0
changed the title
Wrong Output in a an assignment cpp code
[Invalid] Wrong Output in a an assignment cpp code
Aug 21, 2024
@iTzVoko
in this assignment output should not print 500 but this code does. https://github.com/iTzVoko/elzero-cpp-assignments/blob/main/assignments/47-54/18.cpp
it should be something like
`#include
int main(void)
{
for (int i = 0; i <= 1000; i += 100) // Do Not Edit This Line
{
// Edit What You Need And Add Your Code
if(i == 0 || i == 1000 || i == 500)
{
continue;
}
std::cout << i << "\n";
}
return 0;
}`
The text was updated successfully, but these errors were encountered: