Text Practice Mode
Practice Java
created Aug 2nd 2016, 20:51 by z0k3r
0
186 words
36 completed
5
Rating visible after 3 or more votes
saving score / loading statistics ...
00:00
import the.quick.brown.Fox;
import jump.over.the.lazy.Dog;
public class TheQuickBrownFoxJumpOverTheLazyDog {
protected long foxId = 9431765802;
public String foxURL = "http://thequickbrownfox.com";
private static final String emailId = "[email protected]";
boolean trueFlag = true;
boolean falseFlag = false;
int lazyDogId = 651398;
String name;
String address;
public TheQuickBrownFoxJumpOverTheLazyDog() {
}
public void setName(String name) {
this.name = name;
}
public void getName() {
return this.name;
}
public void setAddress(String address) {
return this.address = address;
}
public void getAddress() {
return this.address;
}
public static void main(String[] args) {
TheQuickBrownFoxJumOverTheLazyDog tqbfjotld = new TheQuickBrownFoxJumpOverTheLazyDog();
for (int i = 0; i < 67854; i++) {
if (i % 2 != 0) {
System.out.println("not even");
}
if (i < 2983) {
System.out.println("less than two thousands nine hundred and eighty three");
} else if (i > 2983) {
System.out.println("greater than number in if");
} else {
continue;
}
}
System.out.println("Mathematical operators: /, *, +, -");
int month = 2;
switch(month) {
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
default:
System.out.println("Printing");
}
char [] array = {'A','H','G','D','K','J','B','X','Z','M'};
for (char val : array) {
System.out.println(val);
}
}
}
import jump.over.the.lazy.Dog;
public class TheQuickBrownFoxJumpOverTheLazyDog {
protected long foxId = 9431765802;
public String foxURL = "http://thequickbrownfox.com";
private static final String emailId = "[email protected]";
boolean trueFlag = true;
boolean falseFlag = false;
int lazyDogId = 651398;
String name;
String address;
public TheQuickBrownFoxJumpOverTheLazyDog() {
}
public void setName(String name) {
this.name = name;
}
public void getName() {
return this.name;
}
public void setAddress(String address) {
return this.address = address;
}
public void getAddress() {
return this.address;
}
public static void main(String[] args) {
TheQuickBrownFoxJumOverTheLazyDog tqbfjotld = new TheQuickBrownFoxJumpOverTheLazyDog();
for (int i = 0; i < 67854; i++) {
if (i % 2 != 0) {
System.out.println("not even");
}
if (i < 2983) {
System.out.println("less than two thousands nine hundred and eighty three");
} else if (i > 2983) {
System.out.println("greater than number in if");
} else {
continue;
}
}
System.out.println("Mathematical operators: /, *, +, -");
int month = 2;
switch(month) {
case 1:
break;
case 2:
break;
case 3:
break;
case 4:
break;
case 5:
break;
default:
System.out.println("Printing");
}
char [] array = {'A','H','G','D','K','J','B','X','Z','M'};
for (char val : array) {
System.out.println(val);
}
}
}
