Posts by Eduardo Júnior • 43 points
2 posts
- 
		3 votes1 answer429 viewsQ: More than one list in the same loopI can put more than one list on it loop? for example, you can put more than one variable in a for: for (int a, b; a<10 b<20; a++ b++) { ....... } So I wanted to put more than one list on it… 
- 
		1 votes2 answers1378 viewsQ: Read java strings within a while or do-while repetition structureHow do I read java strings within a while or do-while? repeat structure without error and reads Code: package listas; import static java.lang.System.exit; import java.util.ArrayList; import…