gpt4 book ai didi

dart - 我想在同一行中获得用户输入,但是print()函数将焦点发送到下一行,而将焦点放在同一行上

转载 作者:行者123 更新时间:2023-12-03 03:26:34 27 4
gpt4 key购买 nike

这是我简单的 Dart 代码。这需要用户名。

import 'dart:io';
void main() {
print("Enter Your name: ");
String userName = stdin.readLineSync();
print("Welcome $userName");
}

这是输出:
Enter Your name:  // I want to enter it here.
jay //but it forces me to enter here.
Welcome jay

最佳答案

stdout.write应该做你想要的:

stdout.write("Enter Your name: ");

关于dart - 我想在同一行中获得用户输入,但是print()函数将焦点发送到下一行,而将焦点放在同一行上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52596941/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com