开发者社区> 问答> 正文

【作业】编写程序:计算字符串中出现的单词数

使用Java编写

展开
收起
YDYK 2020-04-24 14:11:46 354 0
1 条回答
写回答
取消 提交回答
  • Program:
    
      public class Test   
    {  
        public static void main (String args[])  
        {  
            String s = "Sharma is a good player and he is so punctual";  
            String words[] = s.split(" ");  
            System.out.println("The Number of words present in the string are : "+words.length);  
        }  
    }  
    
    2020-04-24 14:12:06
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载