Skip to content

Instantly share code, notes, and snippets.

@alexejVasko
Last active March 22, 2016 13:21
Show Gist options
  • Save alexejVasko/dd03278408403adb1d40 to your computer and use it in GitHub Desktop.
Save alexejVasko/dd03278408403adb1d40 to your computer and use it in GitHub Desktop.
package calculator;
import java.util.Scanner;
public class StringCalcScanner {
public String scanString() {
Scanner sign = new Scanner(System.in);
String mySign = sign.nextLine();
return mySign;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment