0
I am starting in Dart code before going to the flutter, there is an error on the line var numero = int.parse();
which cannot insert an integer value, as I must enter an integer value correctly?
In case I wanted to make one output
with type variable decimal
how do I correctly capture this type of variable?
import 'dart:io';
main() {
print ("Digite o seu nome: ");
var nome = stdin.readLineSync();
print ("Digite um número inteiro: ");
var numero = int.parse(); // ERRO
if (numero > 10) {
print("${nome}, o número ${numero} é maior que 10.");
} else if (numero < 10) {
print("${nome}, o número ${numero} é menor que 10.");
} else {
print("${nome}, o número ${numero} é igual a 10.");
}
}
If it is a value
decimal
, how should I make aoutput
suitable for this type of variable?– Kyukay