Logo

Programming-Idioms

History of Idiom 120 > diff from v1 to v2

Edit summary for version 2 by :
New Pascal implementation by user [Bart]

Version 1

2016-02-04, 10:59:51

Version 2

2016-02-07, 15:44:08

Idiom #120 Read integer from stdin

Read an integer value from the standard input into variable n.

Idiom #120 Read integer from stdin

Read an integer value from the standard input into variable n.

Code
var 
 n: Integer;
begin
  read(n);
end.