Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
string input = Console.ReadLine();
string[] intlist = input.Split(new char[] {',', ' '});
foreach(string item in intlist)
{
Console.WriteLine(Convert.ToInt32(item));
}
Assumes each integer number is separated by a comma or space
integer :: I,j,k ,l(3)
read(*,*) I, j, k, l
read <$> getLine :: IO [Integer]
-- reading space separated list of ints
map read . words <$> getLine :: IO [Int]
(<$>) is fmap
process.stdin.on('data', processLine)
function processLine (line) {
const string = line + ''
console.log(string)
}
const ints = await new Promise(resolve => {
let string = ''
process.stdin
.on('data', data => string += data.toString())
.on('close', () => resolve(string.split('\n').map(line => Number.parseInt(line))))
})
Scanner s = new Scanner(System.in);
int a[] = s.tokens()
.mapToInt(Integer::parseInt)
.toArray();
s.close();
(read)
@x = map {chomp; $_} <>;
<> returns lines from stdin.
Run a map over stdin to remove the newline (from the sometimes-named `it` variable) and stash the results in an array.
Run a map over stdin to remove the newline (from the sometimes-named `it` variable) and stash the results in an array.
list(map(int, input().split()))
numbers = [int(x) for x in input().split()]
a = (x.split() for x in stdin)
a = map(int, chain(*a))
STDIN.read.split.map(&:to_i)
split will split the input around spaces by default.
map(&:to_i) is just short for the block map{|x| x.to_i}
map(&:to_i) is just short for the block map{|x| x.to_i}
let mut string = String::new();
io::stdin().read_to_string(&mut string)?;
let result = string
.lines()
.map(i32::from_str)
.collect::<Result<Vec<_>, _>>();
result is a Result<Vec<i32>, ParseIntError>.