選出數字
#includeint main()
return 0;
}
選出aeiou等母音字母
#includeint main()
}str1[count] = '\0';
puts(str1);
return 0;
}
字串從末尾開始計算
#includeint main()
return 0;
} /*description
寫一函式,使輸入的乙個字串按反序存放,在主函式中輸入輸出反序後的字串。
input
一行字元
output
逆序後的字串
sample input
123456abcdef
sample output
fedcba654321
這裡我用原來的for來計算的其實可以用strlen來的
無腦做法
#includeint main ()
if (strcmp(b,c) > 0)
if (strcmp(a,b) > 0)
puts(a);
puts(b);
puts(c);
return 0;
}
大神利用二階指標
void swap(char **q1,char **q2)
void exchange(char **p1,char **p2,char **p3)
int main()
其實吧,現在我覺得swap的函式也是極好的
這個需要 #include 的標頭檔案
可以簡單的交換兩個同型別的變數
字串的常規操作
name royal 1 移除 name 變數對應的值兩邊的空格,並輸出處理結果 res name.strip print res 2 判斷 name 變數對應的值是否以 ro 開頭,並輸出結果 res name.startswith ro print res 3 判斷 name 變數對應的值是否以...
js字串常規操作
字串 支付穿建立 1.var str hello 2.var str new string 不能使用陣列常用方法 字串的常用方法 1.charat 按照索引查詢字串的內容,並返回,語法 字串.charat 需要查詢的索引 返回值,對應索引的字串,沒有就是目標空字元 2.charcodeat 對應索引...
python之字串常規操作
python不允許直接與其他型別的資料拼接 str1 今 天 一 共 花 了 str2 元錢 num 10print str1 str num str2 str3 str1.split 3 計算字串的長度 print len str1 擷取字串 print str1 2 5 分隔字串 print s...