подсчитайте , сколько байт в памяти занимает рисунок 30 на 100 пикселов , закодированный с палитрой 64 цветов . Место для хранения палитры не учитывайте.
uses crt; const max=20; var a:array [1..max,1..max] of byte; n,i,j,k,s,s1,s2,s3:integer; x:char; begin x:=x; repeat Writeln('vvedite kol-vo komand N'); Readln(N); until N in [1..max]; for i:=1 to N do for j:=1 to N do A[i,j]:=random(3); For i:=1 to N do begin for j:=1 to N do if i=j then write(#204:4) else Write(a[i,j]:4); writeln; end; writeln('íîìåðà êîìàíä, èìåþùèõ áîëüøå ïîáåä íà ÷óæîì ïîëå'); k:=0; s:=0; s3:=0; for i:=1 to n do begin for j:=1 to n do begin if a[i,j]=2 then s1:=s+1; if a[j,i]=0 then s2:=s3+1; s:=s1; s3:=s2; end; end; if s2>s1 then begin writeln('Nomer komandy - ',i,' Kol. pobed = ',s2); k:=1 end; if k=0 then writeln('takih komand net'); end.
1. Подумать над алгоритмом 2. Вот сам алгоритм: а. спросить у пользователя значения б. расчитать ответ в. выдать ответ на экран 3. Написать код в паскале 4. Исправить ошибки компиляции 5. Протестировать, вводить разные числа 6. обнаружила, что если вводить числа наугад ответ получается отрицательным иногда 7. Вставить код проверки введенных пользователем значений 8. убрать ошибки компиляции 9. протестировать 10. готово
А вот и сама программа:
program aerobus; uses crt; const TotalPlace = 160; var businessPlaces, economyPlaces:integer; businessPrice, economyPrice:real; totalCharge:real; a,b:integer; correctInput:boolean; begin clrscr; businessPlaces:=TotalPlace div 4; economyPlaces:= TotalPlace - businessPlaces; writeln('business places count: ', businessPlaces); writeln('economy places count: ', economyPlaces); correctInput:=false; while not correctInput do begin write('Please Input Business Class Ticket Price: '); readln(businessPrice); if(businessPrice>0) then begin correctInput:=true; end else begin writeln('The price should be a positive number, please try again'); end; end; economyPrice:=businessPrice/2; writeln('Economy Ticket Price is: ', economyPrice:0:2); correctInput:=false; while not correctInput do begin write('How many business tickets are left?: '); readln(a); if(a>=0) and (a<=businessPlaces)then correctInput:=true; if(a<0) then begin writeln('Please input a positive number or 0, please try again'); end; if(a>businessPlaces) then begin writeln('Please input a number which is less or equal to the tolal business place count, please try again'); end; end;
correctInput:=false; while not correctInput do begin write('How many economy tickets are left?: '); readln(b); if(b>=0) and (b<=economyPlaces)then correctInput:=true; if(b<0) then begin writeln('Please input a positive number or 0, please try again'); end; if(b>economyPlaces) then begin writeln('Please input a number which is less or equal to the tolal economy place count, please try again'); end;
end; totalCharge:=(businessPlaces-a)*businessPrice; totalCharge:=totalCharge+(economyPlaces-b)*economyPrice; writeln('The total charge is:', totalCharge:0:2); writeln; writeln('Press enter to exit'); readln; end.
вот программа на языке PASCALABC
uses crt;
const max=20;
var a:array [1..max,1..max] of byte;
n,i,j,k,s,s1,s2,s3:integer;
x:char;
begin
x:=x;
repeat
Writeln('vvedite kol-vo komand N');
Readln(N);
until N in [1..max];
for i:=1 to N do
for j:=1 to N do
A[i,j]:=random(3);
For i:=1 to N do
begin
for j:=1 to N do
if i=j then write(#204:4)
else Write(a[i,j]:4);
writeln;
end;
writeln('íîìåðà êîìàíä, èìåþùèõ áîëüøå ïîáåä íà ÷óæîì ïîëå');
k:=0;
s:=0;
s3:=0;
for i:=1 to n do
begin
for j:=1 to n do
begin
if a[i,j]=2 then s1:=s+1;
if a[j,i]=0 then s2:=s3+1;
s:=s1;
s3:=s2;
end;
end;
if s2>s1 then
begin
writeln('Nomer komandy - ',i,' Kol. pobed = ',s2);
k:=1
end;
if k=0 then writeln('takih komand net');
end.
1. Подумать над алгоритмом
2. Вот сам алгоритм:
а. спросить у пользователя значения
б. расчитать ответ
в. выдать ответ на экран
3. Написать код в паскале
4. Исправить ошибки компиляции
5. Протестировать, вводить разные числа
6. обнаружила, что если вводить числа наугад ответ получается отрицательным иногда
7. Вставить код проверки введенных пользователем значений
8. убрать ошибки компиляции
9. протестировать
10. готово
А вот и сама программа:
program aerobus;
uses crt;
const TotalPlace = 160;
var businessPlaces, economyPlaces:integer;
businessPrice, economyPrice:real;
totalCharge:real;
a,b:integer;
correctInput:boolean;
begin
clrscr;
businessPlaces:=TotalPlace div 4;
economyPlaces:= TotalPlace - businessPlaces;
writeln('business places count: ', businessPlaces);
writeln('economy places count: ', economyPlaces);
correctInput:=false;
while not correctInput do
begin
write('Please Input Business Class Ticket Price: ');
readln(businessPrice);
if(businessPrice>0) then
begin
correctInput:=true;
end
else
begin
writeln('The price should be a positive number, please try again');
end;
end;
economyPrice:=businessPrice/2;
writeln('Economy Ticket Price is: ', economyPrice:0:2);
correctInput:=false;
while not correctInput do
begin
write('How many business tickets are left?: ');
readln(a);
if(a>=0) and (a<=businessPlaces)then correctInput:=true;
if(a<0) then
begin
writeln('Please input a positive number or 0, please try again');
end;
if(a>businessPlaces) then
begin
writeln('Please input a number which is less or equal to the tolal business place count, please try again');
end;
end;
correctInput:=false;
while not correctInput do
begin
write('How many economy tickets are left?: ');
readln(b);
if(b>=0) and (b<=economyPlaces)then correctInput:=true;
if(b<0) then
begin
writeln('Please input a positive number or 0, please try again');
end;
if(b>economyPlaces) then
begin
writeln('Please input a number which is less or equal to the tolal economy place count, please try again');
end;
end;
totalCharge:=(businessPlaces-a)*businessPrice;
totalCharge:=totalCharge+(economyPlaces-b)*economyPrice;
writeln('The total charge is:', totalCharge:0:2);
writeln;
writeln('Press enter to exit');
readln;
end.