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 com.geegbrainsJava2lesson2; | |
/** | |
* Created by Jack Sparrow on 20.02.2017. | |
*/ | |
public class GenArray { | |
String data; | |
String[][] res; |
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 JavaGeegbrain.Lesson4; | |
/** | |
* Created by Jack Sparrow on 14.12.2016. | |
*/ | |
public class Main { | |
public static final int OT = 18; // Возрст от | |
public static final int DO = 70; // Возрст до | |
public static final int OTBOR = 40; // Критерии отбора |
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 JavaGeegbrain.Lesson4; | |
/** | |
* Created by Jack Sparrow on 14.12.2016. | |
*/ | |
public class Main { | |
public static final int OT = 18; // Возрст от | |
public static final int DO = 70; // Возрст до | |
public static final int OTBOR = 40; // Критерии отбора |
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 JavaGeegbrain.Lesson4; | |
/** | |
* Created by Jack Sparrow on 14.12.2016. | |
*/ | |
public class Employee { | |
private String name; // Полное имя сотрудника в формате | |
private String function; // Должность | |
private String email; // Email сотрудника | |
private String phone; //Номер телефона |
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 JavaGeegbrain; | |
/** | |
* Created by Jack Sparrow on 02.12.2016. | |
*/ | |
public class Lesson1 { | |
public static void main (String[] args){ | |
byte x = 127; | |
short y = 32767; | |
int z = 2147483647; |
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 JavaGeegbrain; | |
/** | |
* Created by Jack Sparrow on 02.12.2016. | |
*/ | |
public class Lesson1 { | |
public static void main (String[] args){ | |
byte x = 127; | |
short y = 32767; | |
int z = 2147483647; |
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 JavaGeegbrain; | |
/** | |
* Created by Jack Sparrow on 02.12.2016. | |
*/ | |
public class Lesson1 { | |
public static void main (String[] args){ | |
byte x = 127; | |
short y = 32767; | |
int z = 2147483647; |
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 JavaGeegbrain; | |
/** | |
* Created by Jack Sparrow on 02.12.2016. | |
*/ | |
public class Lesson1 { | |
public static void main (String[] args){ | |
byte x = 127; | |
short y = 32767; | |
int z = 2147483647; |
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
/** | |
* Created by Jack Sparrow on 02.12.2016. | |
*/ | |
public class HelloyWorld { | |
public static void main(String[] args) { | |
System.out.println("Hello World"); | |
} | |
} |