-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGridPrinter.java
More file actions
212 lines (193 loc) · 6.81 KB
/
GridPrinter.java
File metadata and controls
212 lines (193 loc) · 6.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
import java.util.Scanner;
public class GridPrinter {
public static void main(String[] args) {
Scanner userInput;
userInput = new Scanner(System.in);
int row;
int column;
String reply;
int x;
int y;
int z=0;
while (z<1) {
System.out.print("Enter number of rows: ");
row = userInput.nextInt();
System.out.print("Enter number of columns: ");
column = userInput.nextInt();
boolean xSwitch = false;
for (x=1; x <= row; x++) {
if (x % 2 != 0) {
xSwitch = true;
}
else {
xSwitch = false;
}
for (y=1;y<=column; y++) {
if (xSwitch) {
System.out.print("X");
} else {
System.out.print("O");
}
xSwitch = !xSwitch;
}
System.out.println("");
}
System.out.println("Do you want to continue? (Y/N)");
userInput = new Scanner(System.in);
reply = userInput.nextLine();
if (reply.equals("N")) {
z=z+4;
}
else {
z=z-1;
while reply!="No"
System.out.println("Do you want to continue? (Y/N)");
userInput = new Scanner(System.in);
reply = userInput.nextLine();
}
}
}
}
import java.util.Random;
import java.util.Scanner;
public class GuessingGame {
public static void main(String[] args) {
System.out.println("Welcome to the Guessing Game!");
Random rand = new Random(); //initializing the random method
boolean playAgain = true; //decides on which sequence to use
int geostart;
int geofactor;
int squareroot;
int tracker=0;
int exbase;
int randomSequence = rand.nextInt(3);
int keepPlaying;
System.out.println(randomSequence);
Scanner userInput = new Scanner(System.in);
int answer;
String play;
while (playAgain = true) {
randomSequence = rand.nextInt(3);
if (randomSequence ==0) { // geometric sequence
System.out.println("Here is your sequence:");
geostart = rand.nextInt(4) +1;
geofactor = rand.nextInt(11) - 5;
while (tracker < 3) {
tracker += 1;
System.out.println(geostart*geofactor);
geostart = geostart *geofactor;
}
geostart = geostart*geofactor;
System.out.print("What is the next number? ");
answer = userInput.nextInt();
if (answer != geostart) {
System.out.println("Incorrect! The next number was " + geostart);
System.out.println("Want to play again?");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = false;
break;
}
}
else if (answer == geostart) {
System.out.println("Correct!");
System.out.println("Want to play again?");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = false;
break;
}
}
}
else if (randomSequence==1) {
System.out.println("Here is your sequence:");
squareroot = rand.nextInt(101) +100;
while (tracker <3) {
tracker += 1;
double squarenum = Math.sqrt(squareroot);
System.out.println((int) squarenum);
squareroot = (int) squarenum;
}
double squarenum = Math.sqrt(squareroot);
System.out.print("What is the next number? ");
answer = userInput.nextInt();
if (answer != (int) squarenum) {
System.out.println("Incorrect! The next number was " + (int) squarenum);
System.out.println("Want to play again?");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = false;
break;
}
}
else if (answer == (int) squarenum) {
System.out.println("Correct!");
System.out.println("Want to play again?");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = false;
break;
}
}
else if (randomSequence ==2) {
exbase = rand.nextInt(10) + 1;
System.out.println("Here is your sequence:");
System.out.println((int)Math.pow(exbase, 0));
System.out.println((int)Math.pow(exbase, 1));
System.out.println((int)Math.pow(exbase, 2));
double finalnum = Math.pow(exbase, 3);
System.out.print("What is the next number? ");
answer = userInput.nextInt();
if (answer != (int) finalnum) {
System.out.println("Incorrect! The next number was " + (int) finalnum);
System.out.println("Want to play again?");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = false;
break;
}
}
else if (answer == (int) finalnum) {
System.out.println("Correct!");
System.out.print("Want to play again? (Y/N): ");
tracker = 0;
userInput = new Scanner(System.in);
play = userInput.nextLine();
if (play.equals("Y")) {
continue;
}
else if (play.equals("N")) {
playAgain = !playAgain;
break;
}
}
}
}
}
}
}