0
print article
so if you want to print 100 words do still use System.out.println?
6 Respostas
+ 2
🧐
+ 2
Yes you can store the words with an array and loop through it, example:
String[] words = {"word1","word2","word3"};
for(String w: words){
System.out.println(w);
}
0
the link leads to an dead end.
0
thanks that worked!
0
You are welcome👍