Logo

Programming-Idioms

  • Pascal
  • C#

Idiom #120 Read integer from stdin

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

using System;
n = int.Parse(Console.ReadLine());
read(n);
#include <stdio.h>
int n;
scanf("%d", &n);

New implementation...
< >
programming-idioms.org