獲得使用者輸入的乙個字串,輸出其中字元a的出現次數

2021-10-03 06:14:54 字數 508 閱讀 6257

task19:獲得使用者輸入的乙個字串,輸出其中字元a的出現次數

""

"name: wangzilu

date: 2020/2/19

task: 獲得使用者輸入的乙個字串,輸出其中字元a的出現次數"""

# first way

x = str(input(

'please enter whatever you want: '

))print(x.count(

'a'))

#second

count = 0 # 實現count函式的功能

for i in range(len(x)):

if x[i]

=='a'

: count += 1

print(count)

please enter whatever you want: 123aaw

22

輸入乙個字串並使其反序輸出

c語言寫法 include stdio.h include string.h include math.h void reverse char str int main void printf 請輸入一行字串 這裡不用scanf 是因為scanf 一次只能讀取乙個連續字串,遇到空格則會捨棄空格後的其...

獲得乙個字串的全排列

public class permutation else param args public static void main string args todo auto generated method stub permutation p new permutation string s ab...

在乙個字串中尋找另外乙個字串

在乙個字串中尋找另外乙個字串 public class text foundit true break test system.out.println foundit?found it didn t find it 該段程式有點難以理解,主要就是if語句的理解,if searchme.charat ...