November 2021 0 6 Report
Определитель, что выводится на печать в результате выполнения следующей программы, если ввели b = 7, c = 2.
 

Program raschet;
var a, b, c, i: integer;
 

begin

read(b,c);

writeln(‘b=’,b,’c=’,c);

i:=b div c;

case i of
 
1: a:=b+c;
 
2: a:=b-c;
 
3: a:=2*(b+c);
 
4: a:=b*c;
end;

writeln(‘a=’,a);







end.
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.