728x90 반응형 Dart/Dart Practice1 Dart variable Practice 1 QuestionStiring 변수를 선언하고 자신의 이름을 저장하라.변수를 이용하여 자신의 이름을 Console에 출력하라 HintString 활용 예상결과MaccreyProcess finished with exit code 0 문제풀이import 'dart:io';void main() { String name; name = stdin.readLineSync()!; print(name);}입력하는곳인지 유저가 알수 없기 때문에 메시지를 출력해주도록 하자import 'dart:io';void main() { String name; print('이름을 입력해 주세요: '); name = stdin.readLineSync()!; print(name);} import 'dart:io';void m.. 2024. 7. 29. 이전 1 다음 728x90 반응형