import java.util.Scanner; // *Has to be outside of brackets!*
public class Lab_1_3_Class_oops {
public static void main(String[] args) {
//I need to request a person's first and last name, then copy it on individual lines after they have entered their input
//Variables
Scanner sc = new Scanner(System.in);
//Requesting a name
System.out.print("Please write your first and last name.\n");
//Allowing a name input
sc.nextLine();
//I get as far as allowing text to be entered, but I can't figure out a way to keep that text in the memory long enough to get it copied 100 times without making the person type it 100 times
}
}
我不是在寻找直接的答案。我只想知道,我想要的是不是可能的方式,我已经开始,我甚至会开始尝试这样的事情。
4条答案
按热度按时间q3aa05251#
非常感谢大家!我是通过宣布
然后创建一个while循环
我真的很感谢大家的帮助,但实际上没有告诉我答案。
mwngjboj2#
您需要声明一个变量来保存用户的输入。然后,可以使用for循环执行任意次数的操作。
owfi6suc3#
声明一个变量来保存用户的输入,然后将其放入循环中(从那里打印)
2w3kk1z54#
以字符串形式获取名称输入,并使用for循环打印它。我希望我不是太直接。