Logo

Programming-Idioms

  • Go
  • Python
  • Perl

Idiom #120 Read integer from stdin

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

my $n = <> + 0;  # read a line from STDIN, add 0 to convert to int
import "fmt"
_, err := fmt.Scanf("%d", &n)
import "fmt"
_, err := fmt.Scan(&n)

Warning: if the input has a leading 0, it will be interpreted as octal!
n = int(input())
n = int(input("Input Prompting String: "))
#include <stdio.h>
int n[15];
fgets(n, 15, stdin);

int n[15]; Int with 15 bytes to use.

Fgets gets user input, and sets n to what it gets

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