program raf105;
const pass = 105;
var enterpass, x:integer;
begin
repeat
write('Введите пароль: ');
readln(enterpass);
if enterpass = pass
then
while 1=1 do
writeln('Молодец')
else x += 1;
until x=5;
end.
Вывод: Введите пароль:
Ввод: 105
Вывод: Молодец Молодец Молодец Молодец Молодец Молодец Молодец Молодец Молодец...
Ввод: 123
Ввод: 106
Ввод: 0
Ввод: 104
Ввод: 666
Объяснение:
1)
int main()
{
int a;
float b;
cout << "enter length in centimeters "; cin >> a;
b = a / 2.5;
cout<<"length in inches = " << b << endl;
}
2)
float a,b,c,d,e;
cout << "enter the number of books purchased "; cin >> a;
cout << "enter their price "; cin >> b;
cout << "enter the price of purchased notebooks "; cin>>c;
cout << "enter their price "; cin >> d;
e = a * b + c * d;
cout << "Total price " << e;
3)
float a,b,c;
cout << "enter the length of the first leg "; cin >> a;
cout << "enter the length of the secomd leg "; cin >> b;
c = (a*b) / 2;
cout << " S= " << c;
program raf105;
const pass = 105;
var enterpass, x:integer;
begin
repeat
write('Введите пароль: ');
readln(enterpass);
if enterpass = pass
then
while 1=1 do
writeln('Молодец')
else x += 1;
until x=5;
end.
Результаты работы программы:1.Вывод: Введите пароль:
Ввод: 105
Вывод: Молодец Молодец Молодец Молодец Молодец Молодец Молодец Молодец Молодец...
2.Вывод: Введите пароль:
Ввод: 123
Вывод: Введите пароль:
Ввод: 106
Вывод: Введите пароль:
Ввод: 0
Вывод: Введите пароль:
Ввод: 104
Вывод: Введите пароль:
Ввод: 666
Объяснение:
1)
int main()
{
int a;
float b;
cout << "enter length in centimeters "; cin >> a;
b = a / 2.5;
cout<<"length in inches = " << b << endl;
}
2)
int main()
{
float a,b,c,d,e;
cout << "enter the number of books purchased "; cin >> a;
cout << "enter their price "; cin >> b;
cout << "enter the price of purchased notebooks "; cin>>c;
cout << "enter their price "; cin >> d;
e = a * b + c * d;
cout << "Total price " << e;
}
3)
int main()
{
float a,b,c;
cout << "enter the length of the first leg "; cin >> a;
cout << "enter the length of the secomd leg "; cin >> b;
c = (a*b) / 2;
cout << " S= " << c;
}