1. Classified as computer generations? 2. The elementary base of computers 1st generation is - …
3. The elementary base of computers 4 generations is - …
4. The elementary base of computers 3rd generation is - …
5. What are the prospects for improvement of technical base of the computer?
6. What is computer architecture? Formulate a definition and decipher it.
7. Draw an analogy between computer architecture and the everyday concept of architecture. What is common and what is the difference?
8. What are the main nodes is a computer?
9. What is the motherboard?
10. The purpose of the printer. The types of printers.
Ввести один из символов "Y" или "n". При вводе "Y" вывести на экран слово "Да", а при вводе "n" слово "нет" Pascal ABC
Даны строки а="вариант",b= "Высоко", с = "макароны". Получить слово "соковарка" Pascal ABC
Pascal ABC Вывести текст файла, заменив цифры от 0 до 9 на слова "ноль", "один"..."девять", начиная каждое предложение с новой строки
Из слова "яблока" путем вырезок и склеек получить слово "блок" и "ока" Pascal ABC
Pascal ABC Составить программу, которая бы выводила на экран заданное число и подпись в зависимости от числа "год", "года" или "лет"
составьте программу, которая из слова "ПРОГРАММА" составляет слова: "ГРАММ","РОГА","ГОРА"
Из слова "апельсин" путем вырезок и склеек его букв получить слово "спаниель" Pascal ABC
var
a,k,s: integer;
begin
read(a);
k := 0; s := 0;
while a mod 2 <> 0 do
begin
if abs(a) mod 10 > 5 then
s := s + a;
a := abs(a);
if (a > 9) and (a < 100) then
k := k + 1;
read(a);
end;
writeln('k=',k,', s=',s)
end.
{2}
var
n,i,p,a: integer;
begin
read(n);
p := 1;
for i := 1 to n do
begin
read(a);
if (a > 0) and (a mod 3 = 0) then
p := p * a;
end;
writeln('p=',p)
end.
{3}
var
n,a,i,k,s: integer;
begin
read(n);
k := 0; s := 0;
for i := 1 to n do
begin
read(a);
if a > 0 then
begin
s := s + a;
k := k + 1;
end;
end;
if k = 0 then k := 1;
writeln('s=',s/k)
end.