Last active
March 22, 2016 13:21
-
-
Save alexejVasko/dd03278408403adb1d40 to your computer and use it in GitHub Desktop.
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 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