求字符串长度
-
时间限制:
- 1000ms 内存限制:
- 65536kB
-
描述
- 求一个长度不大于100的字符串的长度,要求不使用strlen方法,并且使用到字符指针。 输入 输出
- 字符串的长度。 样例输入
-
I love Beijing.
样例输出
-
15
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String st=sc.nextLine(); String[] str=st.split(""); System.out.print(str.length-1); } }