Skip to content

Instantly share code, notes, and snippets.

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();
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);
package rojeckt;
public class MyFirstProgramm {
public static void main(String[] args) {
System.out.println(3 * 7 * 24 * 60 * 60);
}
}