Created
December 4, 2015 17:47
-
-
Save Yur-ok/89a3c0e2deacffd9cb52 to your computer and use it in GitHub Desktop.
Пример использования метода length()
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 SecondProgramm; | |
/** | |
* Created by Юрий on 05.12.2015. | |
*/ | |
public class StringLength { | |
public static void main(String[] args) { | |
String name = "Yuriy"; | |
System.out.println(name.length()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment