using System; public class Program{ public static void Main() { int[] a = new int[10]; for (int i = 1; i < 10; i++) a[i] = i; int count = 0; int sum = 0; int mul = 1; for (int i = 0; i < a.Length; i++) if (a[i] > 0) { count++; sum += a[i]; mul *= a[i]; } Console.WriteLine("сумма : " + sum); Console.WriteLine("произвдение : " + mul); Console.WriteLine("количество : " + count); }}
using System; public class Program{ public static void Main() { int[] a = new int[10]; for (int i = 1; i < 10; i++) a[i] = i; int count = 0; int sum = 0; int mul = 1; for (int i = 0; i < a.Length; i++) if (a[i] > 0) { count++; sum += a[i]; mul *= a[i]; } Console.WriteLine("сумма : " + sum); Console.WriteLine("произвдение : " + mul); Console.WriteLine("количество : " + count); }}
Задача А
program Boom;
uses crt;
var
a, b: integer;
begin
Read(a, b);
if a > b then Writeln('Наибольшее число ', a) else Writeln('Наибольшее число ', b);
end.
Тестовое решение
12
52
Наибольшее число 52
Задача Б
program Boom;
uses crt;
var
a:array[1..4] of Integer;
max:integer;
i:byte;
Begin
for i:= 1 to 4 do
Begin
Write('Введите число:');
Read(a[i]);
End;
max := a[1];
for i:= 2 to 4 do
if a[i] > max then
max := a[i];
Write('Наибольшее число:');
WriteLn(max);
End.
Тестовое решение:
Введите число:12
Введите число:53
Введите число:34
Введите число:63
Наибольшее число:63