Var a,b,c,min:integer; begin readln(a,b,c); if (a>b) and (a>c) then min:=a; if (b>a) and (b>c) then min:=b; if (c>a) and (c>b) then min:=c; write(min); end.
//Описание добавить не вышло на сайт, посему - в файле
#include "stdafx.h" #include <conio.h>
void swap(short &a, short &b) { short c = a; a = b;
b = c; }
void sort(short &a, short &b, short &c) { short min = a, max = c; if (min > b) min = b; if (min > c) min = c; if (max < a) max = a; if (max < b) max = b; b = a + b + c - min - max; a = min; c = max; }
if ((a1 == a2) && (b1 == b2) && (c1 == c2)) printf("Boxes are equal"); else if ((a1 <= a2) && (b1 <= b2) && (c1 <= c2)) printf_s("The first box is smaller than the second one"); else if ((a2 <= a1) && (b2 <= b1) && (c2 <= c1)) printf_s("The first box is larger than the second one"); else printf_s("Boxes are incomparable");
a,b,c,min:integer;
begin
readln(a,b,c);
if (a>b) and (a>c) then min:=a;
if (b>a) and (b>c) then min:=b;
if (c>a) and (c>b) then min:=c;
write(min);
end.