Posts by Janaína Tannus Teixeira • 1 point
1 post
-
0
votes3
answers1538
viewsA: Display from 1 to 1000 in C++ without using a semicolon
#include <iostream> #include <stdio.h> using namespace std; int main(int x = 0) { while (x <= 10) { cout << x++ << endl; } …