Informatică, întrebare adresată de Bsskak, 9 ani în urmă

de la tastatura se introduc 3 numere intregi sa se afiseze cel mai mic

Răspunsuri la întrebare

Răspuns de stassahul
1
var

 a,b,c:integer;
 
begin
 
 read(a,b,c);
 
 if (a<b) and (a<c) then writeln(a);
 if (b<c) and (b<a) then writeln(b);
 if (c<a) and (c<b) then writeln(c);

end.
Alte întrebări interesante