Logo

Programming-Idioms

  • Go
  • Cobol

Idiom #120 Read integer from stdin

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

IDENTIFICATION DIVISION.
PROGRAM-ID. stdin.
PROCEDURE DIVISION.
    ACCEPT n
STOP RUN.
import "fmt"
_, err := fmt.Scan(&n)

Warning: if the input has a leading 0, it will be interpreted as octal!
import "fmt"
_, err := fmt.Scanf("%d", &n)
#include <stdio.h>
int n;
scanf("%d", &n);

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