summaryrefslogtreecommitdiffstats
path: root/Java/Even20To100.java
diff options
context:
space:
mode:
Diffstat (limited to 'Java/Even20To100.java')
-rw-r--r--Java/Even20To100.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/Java/Even20To100.java b/Java/Even20To100.java
new file mode 100644
index 0000000..b3a2b33
--- /dev/null
+++ b/Java/Even20To100.java
@@ -0,0 +1,14 @@
+//BufferedReader is faster than scanner as it doesn't parse the text. Iterated over 1000 times, it saves 30 seconds in total.
+import java.io.BufferedReader;
+import java.io.InputStreamReader;
+
+class Even20To100 {
+ public static void main(String[] args) throws java.io.IOException {
+
+
+ for(int i = 0; i <= 100;i++){
+ if (i % 2 == 0){
+ System.out.print(i + " ");
+ }
+ }
+ }}