Предмет: Информатика, автор: anton4848

Написать простую программу(паскаль).
Дано три числа a, b, c .Найти среди них минимальное.

Ответы

Автор ответа: PsyShit
1
program z1;
uses crt;
var a,b,c,min:integer;
begin
writeln ('vvedite a,b,c');
readln(a,b,c);
if a < b then min:=a else min:=b;
if min>c then min:=c;
writeln('minimal: ',min);
end.
Автор ответа: irinatridubenk
0
var a:array [1..3] of integer;
a,b,c,i,min : integer;
begin
readln(a,b,c);
for i:=1 to 3 do readln(a[i]);
min:=a[1];
for i:=1 to 3 do
if a[i]writeln(min);
end.

irinatridubenk: sorry, when if a[i]
Похожие вопросы
Предмет: Английский язык, автор: Katya9914
СРОЧНО ! Написать краткий пересказ на русском, каждый абзац по отдельности. БЕЗ использования переводчика

Systems software are the programs designed to control the operation of a computer system. They do not solve specific problems. They are written to assist people in the use of the computer system by performing tasks, such as controlling all of the operations required, to move data into and out of a computer and all of the steps in executing an application program. The person who prepares systems software is referred to as a systems programmer. Systems programmers are highly trained specialists and important members of the architectural team.

Applications software are the programs written to solve specific problems (applications), such as payroll, inventory control, and investment analysis. The word program usually refers to an application program, and the word programmer is usually a person who prepares applications software.

Often programs, particularly systems software, are stored in an area of memory not used for applications software. These protected programs are stored in an area of memory called readonly memory (ROM), which can be read from but not written on.

Firmware is a term that is commonly used to describe certain programs that are stored in ROM. Firmware often refers to a sequence of instructions (software) that is substituted for hard¬ware. For example, in an instance where cost is more important than performance, the computer system architect might decide not to use special electronic circuits (hardware) to multiply two numbers, but instead write instructions (software) to cause the machine to accomplish the same function by repeated use of circuits already designed to perform addition.