“Input di Lua” Kode Jawaban

Input Pengguna Lua

 s = io.read("*n") -- read a number
 s = io.read("*l") -- read a line (default when no parameter is given)
 s = io.read("*a") -- read the complete stdin
 s = io.read(7) -- read 7 characters from stdin
 x,y = io.read(7,12) -- read 7 and 12 characters from stdin and assign them to x and y
 a,b = io.read("*n","*n") -- read two numbers and assign them to a and b
Adxm

Input di Lua

local input = io.read()
abdullah

Input Pengguna Lua

input = io.read()
ThaCuber

Jawaban yang mirip dengan “Input di Lua”

Pertanyaan yang mirip dengan “Input di Lua”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya