0
Who can help pls
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner read = new Scanner(System.in); int firstBadGuy = read.nextInt(); int secondBadGuy = read.nextInt(); //your code goes here for(int x=0;x<4;x++) firstBadGuy += x; for(int y=0;y<1;y++) secondBadGuy += y; } } }
5 Respuestas
+ 1
MR KINGSHOW
What you want to achieve?
+ 1
MR KINGSHOW
There are 7 cards, 5 for good guys and 2 for bad guys.
So there are 2 inputs for bad guys which are the position of cards
So use for loop till i <= 7 and print "Badguy" and "Goodguy"
Remember i should start from 1 not 0
0
A͢J sample output is
Badguy
Goodguy
Goodguy
Badguy
Goodguy
Goodguy
0
Using for loop