This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Documents { | |
| public static void main(String[] args) { | |
| System.out.println("ilyaBroBrother".length()); | |
| String name = "ilyaBroBrother"; | |
| System.out.println(name.length()); | |
| System.out.println(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package rojeckt; | |
| public class MyFirstProgramm { | |
| public static void main(String[] args) { | |
| String a = "Hello my name is "; | |
| String b = "Ilya i am "; | |
| String f = ""; | |
| int x = 13; | |
| System.out.print(f+a+b+x); | |
| System.out.print(f); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package rojeckt; | |
| public class MyFirstProgramm { | |
| public static void main(String[] args) { | |
| System.out.println(3 * 7 * 24 * 60 * 60); | |
| } | |
| } |
NewerOlder