for (int i = 1; i <= 100; i++)
{
for (int j = 2; j < i; j++)
{
if (i % j == 0)
{
bcd++;
break;
}
}
if (bcd == 0 && i != 1)
{
cout << i << endl;
}
bcd = 0;
}
#include<iostream>
using namespace std;
int main()
{
int bcd = 0;
for (int i = 1; i <= 100; i++)
{
for (int j = 2; j < i; j++)
{
if (i % j == 0)
{
bcd++;
break;
}
}
if (bcd == 0 && i != 1)
{
cout << i << endl;
}
bcd = 0;
}
}
Comments
Leave a comment