//1
#include <iostream>
using namespace std;
signed main() {
int N, pr = 1;
cin >> N;
N = abs(N);
if ((N % 10 * (N / 10) % 10 * N / 100) > 10 and (N % 10 * (N / 10) % 10 * N / 100) < 100)
cout << "YES";
else
cout << "NO";
return 0;
}
//2
setlocale(LC_ALL, "Rus");
int N;
while (N > 0) {
if ((N % 10) % 2 == 0)
cout << N % 10 << " - четное\n";
cout << N % 10 << " - нечетное\n";
N /= 10;
//3
int a, b;
cin >> a >> b;
if (a % b == 0)
cout << "Число " << a << " делится без остатка на число " << b;
cout << "Число " << a << " не делится без остатка на число " << b;
<-------------------------1------------------------->
#define _USE_MATH_DEFINES
#include <math.h>
int main()
{
setlocale(LC_ALL, "RU");
double PI = M_PI;
double r, R;
cin >> r >> R;// сначала вводится внутренний радиус
cout <<"S= "<<PI*(R*R-r*r)<<"= PI*"<< (R * R - r * r);
<-------------------------2------------------------->
double x, y;
cin >> x >> y;//
if (y==(5*x*x-7*x+2))
cout << "ДА";
cout << "НЕТ";
//1
#include <iostream>
using namespace std;
signed main() {
int N, pr = 1;
cin >> N;
N = abs(N);
if ((N % 10 * (N / 10) % 10 * N / 100) > 10 and (N % 10 * (N / 10) % 10 * N / 100) < 100)
cout << "YES";
else
cout << "NO";
return 0;
}
//2
#include <iostream>
using namespace std;
signed main() {
setlocale(LC_ALL, "Rus");
int N;
cin >> N;
N = abs(N);
while (N > 0) {
if ((N % 10) % 2 == 0)
cout << N % 10 << " - четное\n";
else
cout << N % 10 << " - нечетное\n";
N /= 10;
}
return 0;
}
//3
#include <iostream>
using namespace std;
signed main() {
setlocale(LC_ALL, "Rus");
int a, b;
cin >> a >> b;
if (a % b == 0)
cout << "Число " << a << " делится без остатка на число " << b;
else
cout << "Число " << a << " не делится без остатка на число " << b;
return 0;
}
<-------------------------1------------------------->
#include <iostream>
#define _USE_MATH_DEFINES
#include <math.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "RU");
double PI = M_PI;
double r, R;
cin >> r >> R;// сначала вводится внутренний радиус
cout <<"S= "<<PI*(R*R-r*r)<<"= PI*"<< (R * R - r * r);
return 0;
}
<-------------------------2------------------------->
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "RU");
double x, y;
cin >> x >> y;//
if (y==(5*x*x-7*x+2))
cout << "ДА";
else
cout << "НЕТ";
return 0;
}