Programmation en D lire les entrées clavier 2
Bonjour cher lecteur,
Comment lire les entrées clavier en D et changer le type?
import tango.io.Console; import tango.util.Convert; import tango.io.Stdout; void main() { Cout("Entrer votre nom: ")(); char[] nom = Cin.get; Cout("Entrer votre age: ")(); uint age = to!(uint)(Cin.get); Stdout.formatln("Salut {} tu as donc {} ans", nom , age); }
A bientôt
Signé: bioinfornatics, Jonathan MERCIER