1樓:bjy流金歲月
#include
#include
int main(void)
;int a[100]=,i=0,n=0;
printf("請輸入字串:");
gets(str);
for(i=0;i<100;i++)
for(i=0;i<100;i++)
printf("共有不重複的字母%d個\n",n);
return 0;
}你看這個行不。。。
2樓:匿名使用者
// **理解起來有難度,請仔細閱讀。
/*輸入一個字串 : 1223039873共有不重複的字元5個。
press any key to continue*/#include
void main() ;
printf("輸入一個字串 : ");
gets(s);
for(i = 0; s[i]; ++i)}for(i = 0;s[i]; ++i) if(a[i] == 0) n++;
printf("共有不重複的字元%d個。\n",n);}
j**a中怎麼統計字串中不同字元個數 70
j**a中 如何統計一段字串中相同字元的個數
擷取字串(不重複)字元,c 一個字串,去掉第一個字元,取後面字元,怎麼寫
第一個方法 function getstr str strarr split str,newstr for i 0 to ubound strarr newstr newstr strarr i next getstr replace newstr end function 第二個方法 functi...
輸入任意長度的字串,將該字串中的字元按ASCII碼值升序排列後輸出
你是說書上讓你補全 那麼,你把原來的題目,完整寫上來,添空處有幾行寫清楚!我讀了你的 修改如下 我測試了幾個,沒有發現問題。dim c s a as string 1 s變數顯然應該用字元型別 dim k as integer,j as integer 這個是我加的變數宣告 c text1 s le...
python裡統計字串中另字串的個數
答案為3 用正則 import re s abababab len re.findall r aba s 3答案為2,用字串的count方法 import string s abababab s.count aba 2替換第二個 aba 為 bab 用字串的切片方法 可能方法醜陋了點,初學者見諒 s...