Skip to content

Instantly share code, notes, and snippets.

package stringCalculator;
import java.util.Scanner;
public class StringCalculatorIf {
public static String[] myInput() {
Scanner sc = new Scanner(System.in);
String[] splitedValue = sc.nextLine().split(" ");
sc.close();
return splitedValue;
}
@livelikeabel
livelikeabel / test.py
Created November 28, 2017 08:25
Simple Test
print("Hello");