0
I wana make a programm
print the prime numbers from 1 to 50
1 Respuesta
0
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
for (int i = 1; i <= 50; i++)
cout << i << endl; /* you can use " " instead of endl */
}
print the prime numbers from 1 to 50