“Jak używać $ wejściu w DART jako ciąg” Kod odpowiedzi

DART Otrzymuj dane wejściowe ciągu od użytkownika

import 'dart:io'; 
  
void main() 
{ 
    print("Enter your name?"); 
    // Reading name of the Geek 
    String name = stdin.readLineSync(); 
  
    // Printing the name 
    print("Hello, $name! \nWelcome to GeeksforGeeks!!"); 
} 
Fancy Frog

Jak używać $ wejściu w DART jako ciąg


// Importing dart:io file
import 'dart:io';
 
void main()
{
    // Asking for favourite number
    print("Enter your favourite number:");
 
   // Scanning number
    int? n = int.parse(stdin.readLineSync()!);
   // Here ? and ! are for null safety
 
    // Printing that number
    print("Your favourite number is $n");
}
Weary Wren

Odpowiedzi podobne do “Jak używać $ wejściu w DART jako ciąg”

Pytania podobne do “Jak używać $ wejściu w DART jako ciąg”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu