package practiceGO; import java.util.Scanner; /* * 3.输入一个字符串,统计该字符串中分别包含多少个数字,多少个字母,多少个其他字符 */ public class Cto { public static void main(String[] args) { int englishCount = 0;// 英文字母个数 int spaceCount = 0;// 空格个数 int numCoun
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; namespace _05在字符串中统计子串出现的次数 { class Program { static void Main(string[] args) { int count = SubstringCount("qhwerzdfrefysasefh
题目:统计一个字符串中单词的个数 输入一行字符,统计其中有多少个单词,单词之间用空格分隔开 输入:my name is jacky 输出:the number of word is 4 代码如下: #include <stdio.h> int main(int argc, char *argv[]) { char str[80]; int i=0,num=0,flag=0; char c; gets(str); while((c=str[i])!='\0') { if(c==' ') flag