1)
#include <iostream>
using namespace std;
int main() {
for (int i = 25; i < 39; i++)
{
if ((i % 7 == 1) || (i % 5 == 2)) {
cout << i << endl;
}
return 0;
2)
int x = 0;
while (x != 1000)
if (x % 4) {
cout << x << endl;
x++;
(Можно лучший ответ)
1)
#include <iostream>
using namespace std;
int main() {
for (int i = 25; i < 39; i++)
{
if ((i % 7 == 1) || (i % 5 == 2)) {
cout << i << endl;
}
}
return 0;
}
2)
#include <iostream>
using namespace std;
int main() {
int x = 0;
while (x != 1000)
{
if (x % 4) {
cout << x << endl;
}
x++;
}
return 0;
}
(Можно лучший ответ)