扫描仪转TextIO问题
我需要添加一个值并使用 TextIO 将其直接输入到数组中。 我知道如果我使用 Scanner,我会使用 in.nextDouble() 函数,但是我将如何使用 TextIO 来做到这一点?
TextIO.put("Enter credit hours:");
creditHour[sem][grd]+=in.nextDouble(); //I have to use TextIO here.
提前致谢,
I need to add a value and input it directly into an array using TextIO.
I know that if I was using Scanner I would use the in.nextDouble() function, but how would I do it using TextIO?
TextIO.put("Enter credit hours:");
creditHour[sem][grd]+=in.nextDouble(); //I have to use TextIO here.
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了。
数组 [i][r] = TextIO.getlnDouble();
Found it.
array [i][r] = TextIO.getlnDouble();