Skip to content

Instantly share code, notes, and snippets.

@alagalia
Created August 29, 2015 14:26
Show Gist options
  • Save alagalia/da14ef4c2dd1bfa09756 to your computer and use it in GitHub Desktop.
Save alagalia/da14ef4c2dd1bfa09756 to your computer and use it in GitHub Desktop.
Commite intro again
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//
public class Problem3_Print_Your_Hometown {
public Problem3_Print_Your_Hometown() {
}
public static void main(String[] var0) {
System.out.println("Hello I am from Javaland!");
}
}
public class Problem3_Print_Your_Hometown {
public static void main(String[] args) {
System.out.println("Hello I am from Javaland!");
}
}
import java.util.Date;
public class problem5__Print_CurrentDate {
public static void main(String[] args) {
System.out.println(new Date());
}
}
import java.util.Scanner;
public class problem6_Sum_Two_Numbers {
public static void main(String[] args) {
Scanner scaner = new Scanner(System.in);
int a = scaner.nextInt();
int b = scaner.nextInt();
int sum = a + b;
System.out.println(sum);
}
}
Variant 1
Compile java file from console:
1. cd SOFTUNI\Java-Basic\Intro-Java-Homework\src
2. set path=%path%;C:Program Files\Java\jdk1.8.0_05\bin
3. javac problem6_Sum_Two_Numbers.java
4. java problem6_Sum_Two_Numbers
VARIANT 2
1. Mouse Right button in directory and start Git Bash
2. javac problem6_Sum_Two_Numbers.java
3. java problem6_Sum_Two_Numbers
import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Scanner;
public class Problem8_SortArrayofStrings {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter number for the length of array:");
int n = scanner.nextInt();
String[] words = new String[n];
System.out.printf("Enter %d words:" , n);
for (int i = 0; i < n; i++) {
words[i]=scanner.next();
}
Arrays.sort(words);
for (int i = 0; i <n ; i++) {
System.out.println(words[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment