1.接收使用者輸入的字串,將其中的字元以與輸入相反的順序輸出."abc"→"cba".
namespace _03字串練習
private static string changestring(string msg)
return new string(chs);}}
}
2. 接收使用者輸入的一句英文,將其中的單詞以反序輸出/. "i love you "→"i evol uoy"
# region 接收使用者輸入的一句英文,將其中的單詞以反序輸出/. "i love you "→"i evol uoy"
console.writeline("請輸入一串英文");
string msg = console.readline();
string names = msg.split(new char , stringsplitoptions.removeemptyentries);//以空格分割、移除空格
for(int i = 0; i < names.length; i++)
msg = string.join(" ", names);//把各個元素用空格連線起來
console.writeline(msg);
console.readkey();
#endregion
3."2023年12月21日"從日期字串中把年月日分別取出來,分別列印到控制台
#region "2023年12月21日"從日期字串中把年月日分別取出來,分別列印到控制台
string date = "2023年12月29日";
// console.writeline("年份" + 2014);
string dts = date.split(new char , stringsplitoptions.removeemptyentries);
console.writeline("年份是",dts[0]);
console.writeline("月份是",dts[1]);//注意索引,乙個元素時始終是
console.writeline("日期是",dts[2]);
console.readkey();
# endregion
字串練習
模擬tirm 方法 去除字串兩段的空格 思路 定義兩個變數 start end 分別從字串的兩段對字串進行逐個字元的判斷,當出現不是空格的字元時停止判斷,整個過程中保持 start end import com.ivan.util.systemutil public class practiseon...
字串練習
1,統計乙個字串中個字元的百分比 如輸入字串asdfs a 20 s 40 d 20 f 20 include include void percentage char str,int len if str str 判斷下乙個字元 int main int len 0 printf please i...
字串練習
字串練習 取得校園新聞的編號 num 14 5 print num 產生python文件的 com print com 產生校園新聞的一系列新聞頁 for i in range 20 print format i 練習字串內建函式 strip,lstrip,rstrip,split,count 用函...