Using The Screen
You can also use the
Write
method which
operates in the same way as
Writeln
but
does not take a new line.
n
n
Write( The price is £,price : 3 : 2 ) ;
n
Write( which is too expensive. ) ;
n
The user would see the following on screen.
The price is £120.99 which is too expensive.