使用陣列輸入乙個字串,統計每部分字元的個數
int
main()
//程式入口,主函式,從這裡開始執行
else
if(str[i]
>=
'a'&&str[i]
<=
'z')
else
if(str[i]
>=
'0'&&str[i]
<=
'9')
else
if(str[i]
==' '
)else
}printf
("小寫%d,大寫:%d,數字:%d,空格:%d,其他:%d"
,small,big,number,blank,other)
;return0;
}
無注釋如下
int
main()
else
if(str[i]
>=
'a'&&str[i]
<=
'z')
else
if(str[i]
>=
'0'&&str[i]
<=
'9')
else
if(str[i]
==' '
)else
}printf
("小寫%d,大寫:%d,數字:%d,空格:%d,其他:%d"
,small,big,number,blank,other)
;return0;
}
一起加油呀!
Java統計乙個字串在另乙個字串中出現的次數
1.鍵盤錄入乙個大字串,再錄入乙個小字串 2.統計小字串在大字串中出現的次數 3.執行列印格式 請輸入大字串 woaichina,chinabutongyubaima,wulunchinahaishijpan,zhaodaogongzuojiushihaoma 請輸入小字串 china 控制台輸出 ...
在乙個字串中尋找另外乙個字串
在乙個字串中尋找另外乙個字串 public class text foundit true break test system.out.println foundit?found it didn t find it 該段程式有點難以理解,主要就是if語句的理解,if searchme.charat ...
php判斷乙個字串包含另乙個字串
a 58252,58253 如果 a 中存在 b,則為 true 否則為 false。b 58253 if strpos a,b false else 查詢字串在陣列中出現的次數 array array 1,hello 1,world hello 11 計算 string在 array 需為陣列 中...