解题思路:
注意事项:
参考代码:
package arrLast; //题目 2846: 统计数字字符个数 import java.util.Scanner; public class t_2846 { public static void main(String args[]) { Scanner sc=new Scanner(System.in); String str=sc.nextLine(); int cont=0; for(int i=0;i<str.length();i++) { if(str.charAt(i)>='0'&&str.charAt(i)<='9') cont++; } System.out.println(cont); } }
0.0分
0 人评分
校门外的树 (C语言代码)浏览:751 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:760 |
数列 (C++代码)浏览:707 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
字符串的输入输出处理 (C语言代码)浏览:1021 |
C二级辅导-阶乘数列 (C语言代码)浏览:736 |
【明明的随机数】 (C语言代码)浏览:845 |
字符逆序 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:569 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1483 |