为了账号安全,请及时绑定邮箱和手机立即绑定

请问 findChar = input.next().charAt(0);是什么意思呢?

请问 findChar = input.next().charAt(0);是什么意思呢?

越尘 2017-01-10 18:08:51
import java.util.Scanner; public class Ex3_2 {       public static void main(String afe[]){              String putIn = “The past is gone and static. Nothing we can do will change it. Thefuture is before us and dynamic. Everything we do will affect it.”              char findChar,temp;              int num = 0; Scanner input=new Scanner(System.in);              System.out.println("请输入要查找的字符:");              findChar = input.next().charAt(0);               for(int i = 0;i<putIn.length();i++){                     temp = putIn.charAt(i);                     if(temp == findChar){                            num++;                     }              }              System.out.println("字符串"+putIn+"中包含"+findChar+"个数为:"+num);       }      }
查看完整描述

1 回答

已采纳
?
望远

TA贡献1017条经验 获得超1032个赞

接收键盘输入的 字符串,并且取出它的第一个字符。

查看完整回答
反对 回复 2017-01-10
  • 1 回答
  • 0 关注
  • 4346 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信