We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30c8305 commit 8cc59beCopy full SHA for 8cc59be
pom.xml
@@ -20,5 +20,4 @@
20
</plugins>
21
</build>
22
23
-
24
</project>
src/main/java/challenge41_50/Challenge_45.java
@@ -0,0 +1,22 @@
1
+package challenge41_50;
2
+
3
+/**
4
+ * valid identifier can begin by underscore, $.
5
+ * String, Double are valid variable identifier;
6
+ */
7
+public class Challenge_45 {
8
+ native void execute();
9
+ public static void main( String[] args ) {
10
+ double _78934 = 1.d;
11
+ float $78934 = 1.0f;
12
+ String String = "Game of Thrones";
13
+ Double Double = 9.d;
14
+ Float Float = 9.f;
15
16
+ double doubleX = 9.f;
17
+ char _98 = 2;
18
+ for (;; System.out.println("James")) {
19
+ System.out.println("Tyron");
+ }
+}
0 commit comments