В таблице Dat хранятся данные измерений среднесуточной
температуры за неделю в градусах (Dat[1] – данные за понедельник,
Dat[2] – за вторник и т.д.). Определите, что будет напечатано в
результате работы следующей программы.
Var k, m: integer;
Dat: array[1..7] of integer;
Begin
m:=0;
Dat[1]:=15; Dat[2]:=18;
Dat[3]:=22; Dat[4]:=20;
Dat[5]:=23; Dat[6]:=24;
Dat[7]:=20;
for k:=1 to 7 do begin
if Dat[k] >20 then
m:=m+1;
end
write(m);
End.
Сишарпик
string ArmanAge, IvanAge, RuslanAge;
Console.WriteLine("Введите возраст Армана."); ArmanAge = Console.ReadLine();
Console.WriteLine("Введите возраст Ивана."); IvanAge = Console.ReadLine();
Console.WriteLine("Введите возраст Руслана."); RuslanAge = Console.ReadLine();
if (byte.TryParse(ArmanAge, out byte ByteArmanAge) && ByteArmanAge < 115 &&
byte.TryParse(IvanAge, out byte ByteIvanAge) && ByteIvanAge < 115 &&
byte.TryParse(RuslanAge, out byte ByteRuslanAge) && ByteRuslanAge < 115)
{
byte MaxAge;
byte EqualAge;
if (ByteArmanAge > ByteIvanAge && ByteArmanAge > ByteRuslanAge)
{
MaxAge = ByteArmanAge;
Console.WriteLine($"Самый старший Арман, его возраст {MaxAge}.");
}
else if (ByteIvanAge > ByteArmanAge && ByteIvanAge > ByteRuslanAge)
{
MaxAge = ByteIvanAge;
Console.WriteLine($"Самый старший Иван, его возраст {MaxAge}.");
}
else if (ByteRuslanAge > ByteArmanAge && ByteRuslanAge > ByteIvanAge)
{
MaxAge = ByteRuslanAge;
Console.WriteLine($"Самый старший Руслан, его возраст {MaxAge}.");
}
else
{
EqualAge = ByteRuslanAge; // к примеру его возраст.
Console.WriteLine($"У всех парней одинаковый возраст, им по {EqualAge} лет.");
}
}
else
{
Console.WriteLine("Введите корректные значения.");
Console.ReadLine();
return;
}
Console.ReadLine();
program max_elementarray ;
var i, max : integer ;
a : array [1..10] of integer;
begin
for i : = 1 to 10 do
begin
readln(a[i]);
end;
max : = a[1];
for i : = 2 to 10 do
if a[i]> max then max : = a[i];
writeln('max element of array = ',max) ;
readln ;
end.