New Activity
Play Fill in the Blanks Game
____________________ operaciones :
uses ____________________ ;
var
x , y : ____________________ ;
suma : real ;
resta : real ;
multy : ____________________ ;
division : ____________________ ;
begin
clrscr ;
writeln ( ´Escribe el valor de x' ) ;
readln ( x ) ;
writeln ( 'Escribe el valor de y' ) ;
readln ( y ) ;
suma : = x + y ;
resta : = x - y ;
multy : = x * y ;
division : = x / y ;
writeln ( 'El total de la suma es' , ____________________ : 2 : 2 ) ;
writeln ( 'El total de la ____________________ es' , ____________________ : 2 : 2 ) ;
writeln ( 'El total de la multiplicación es' , ____________________ : 2 : 2 ) ;
writeln ( 'El total de la ____________________ es' , division : 2 : 2 ) ;
readln ;
end .