java统计字符串中字符出现的次数

利用indexOf()方法统计字符串中字符出现的次数

public class test {
	public static void main(String[] args) {
		String str = "88123214104141298";
		char ch = '8';
		int t = 0,i = 0;
		
		while(str.indexOf(ch, i) != -1)
		{
			t++;
			i = str.indexOf(ch, i) + 1;
		}
				
		System.out.println(str + "中" + ch + "出现了" + t + "次");
	}
	
}

输出结果
在这里插入图片描述

输入字符串按逆序重新排列输出,输出的同将字母进行大小写的重置

import java.util.Scanner;
public class test {
	public static void main(String[] args) {
		System.out.print("请输入字符串");
		Scanner sc = new Scanner(System.in);
		
		String a = sc.nextLine();
		char array[] = a.toCharArray();
		
		for(int i= a.length() - 1;i >= 0;i--) {
			if(array[i] >= 65&&array[i] <= 90)
				array[i] += 32;
			else if(array[i] >= 97&&array[i] <= 122)
				array[i] -= 32;
				
			System.out.print(array[i]);
		}
		
		sc.close();
	}
	
}

测试结果
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值