posts - 137,comments - 0,views - 40818
复制代码
import java.util.Scanner;

public class test1 {
    public static void main(String[] args) {
        String[] words = new String[20];
        System.out.println("请输入二十个单词:");
        Scanner put=new Scanner(System.in);
        int count1 = 0,count2 = 0,count3 = 0;
        int i = 0;
        for(int j = 0;j < words.length;j++) {
            words[j] = put.next();
        }
        do {
            if(words[i].charAt(0)=='w') {
                count1++;
            }
            if(words[i].contains("or")) {
                count2++;
            }
            if(words[i].length()==3) {
                count3++;
            }
            i++;
        }
        while(i<words.length);
        System.out.println("以字母w开头的单词数:"+count1);
        System.out.println("单词中含“or”字符串的单词数:"+count2);
        System.out.println("长度为 3 的单词数:"+count3);
    }
}
复制代码

posted on   wshidaboss  阅读(154)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· AI 智能体引爆开源社区「GitHub 热点速览」
· 写一个简单的SQL生成工具
· Manus的开源复刻OpenManus初探
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示