This commit is contained in:
jslightham
2020-02-12 10:46:48 -05:00
parent ca63a62844
commit 7570e486df
22 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1 @@
[[{"location":"C:\\Program Files\\Java\\jre1.8.0_171","type":"JRE","hints":{"EXECUTION_ENVIRONMENT":"JavaSE-1.8"}},"jre:jre:1.8.0"]]

View File

@@ -0,0 +1 @@
{}

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CCC_2019</name>
<name>CCC_2019 Junior</name>
<comment></comment>
<projects>
</projects>

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

1
CCC_2020 Senior/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/bin/

17
CCC_2020 Senior/.project Normal file
View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>CCC_2020 Senior</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

View File

@@ -0,0 +1,11 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8

View File

@@ -0,0 +1,9 @@
import java.util.Scanner;
public class Main {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,8 @@
import java.util.Scanner;
public class Q1 {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,9 @@
import java.util.Scanner;
public class Q2 {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,9 @@
import java.util.Scanner;
public class Q3 {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,9 @@
import java.util.Scanner;
public class Q4 {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,9 @@
import java.util.Scanner;
public class Q5 {
public static Scanner in = new Scanner(System.in);
public static void main(String[] args) {
}
}