Var A,k,S,M:integer; P:real; Begin Write('Введите натуральное число: ');ReadLn(A); k:=0; S:=0; P:=1; While A>0 do Begin M:=A mod 10; if M = 3 then k:=k+1 else Begin if M > 5 then S:=S+M; if M > 7 then P:=P*M; End; A:=A div 10; End; WriteLn('k = ',k); WriteLn('S = ',S); WriteLn('P = ',P); End.
Var A:integer; Max,Min,M:byte; Begin Write('Введите натуральное число: ');ReadLn(A); Max:=0; Min:=10; While A>0 do Begin M:=A mod 10; if M<Min then Min:=M; if M>Max then Max:=M; A:=A div 10; End; WriteLn('Min = ',Min); WriteLn('Max = ',Max); End.
#include <iostream>
#include <vector>
#include <set>
#include <cmath>
using namespace std;
bool check(double a, double b, double c){
return !(a >= b + c || b >= a + c || c >= b + c);
}
double square(double a, double b, double c){
double p = (a+b+c)/2;
return sqrt(p * (p-a) * (p-b) * (p-c));
}
bool is_palind(int k){
string s = to_string(k);
for(int i = 0; i < s.length() - i - 1; i++)
if(s[i] != s[s.length()-i-1])
return false;
return true;
}
void solve1(){
vector<double> lines(4);
double ans = -1;
for(auto &i : lines) cin >> i;
for(int i = 0; i < 4; i++)
for(int j = i + 1; j < 4; j++)
for(int k = j + 1; j < 4; j++)
if(check(lines[i],lines[j],lines[k]))
ans = max(ans,square(lines[i],lines[j], lines[k]));
ans == -1 ? cout << "No solution" : cout << ans;
}
void solve2(){
set<int> s;
for(int i = 1000; i < 10000; i++)
if(is_palind(i))
s.insert(i);
int n;
cin >> n;
s.find(n) != s.end() ? cout << n : cout << *upper_bound(s.begin(),s.end(),n);
}
A,k,S,M:integer;
P:real;
Begin
Write('Введите натуральное число: ');ReadLn(A);
k:=0;
S:=0;
P:=1;
While A>0 do
Begin
M:=A mod 10;
if M = 3 then k:=k+1
else
Begin
if M > 5 then S:=S+M;
if M > 7 then P:=P*M;
End;
A:=A div 10;
End;
WriteLn('k = ',k);
WriteLn('S = ',S);
WriteLn('P = ',P);
End.
Var
A:integer;
Max,Min,M:byte;
Begin
Write('Введите натуральное число: ');ReadLn(A);
Max:=0;
Min:=10;
While A>0 do
Begin
M:=A mod 10;
if M<Min then Min:=M;
if M>Max then Max:=M;
A:=A div 10;
End;
WriteLn('Min = ',Min);
WriteLn('Max = ',Max);
End.