Ответ:
var a,b,c: integer;
begin
writeln('Введите a,b,c: ');
readln(a,b,c);
if (a mod b = 0) then
writeln('a кратно b. Сумма всех чисел: ',a+b+c)
else
writeln('a не кратно b. Произведение всех чисел: ',a*b*c);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
var a,b,c: integer;
begin
writeln('Введите a,b,c: ');
readln(a,b,c);
if (a mod b = 0) then
writeln('a кратно b. Сумма всех чисел: ',a+b+c)
else
writeln('a не кратно b. Произведение всех чисел: ',a*b*c);
end.