Ответ:
#include <iostream>
using namespace std;
int main () {
for (int i=10; i<=99; i++) {
int x;
x=i%10;
if (i%2==0 and x==2) cout << i << endl;
}
return 0;
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
#include <iostream>
using namespace std;
int main () {
for (int i=10; i<=99; i++) {
int x;
x=i%10;
if (i%2==0 and x==2) cout << i << endl;
}
return 0;
}
Объяснение: