第十五周 將字串格式化後輸出(串)

2021-07-25 13:21:45 字數 590 閱讀 1870

檔名稱:test.cpp

完成日期:2023年12月19日

description

輸入乙個字串,將其按給定的長度n格式化並輸出,若n=0,則輸出原字串

input

輸入乙個字串

output

格式化並輸出

sample input

asdfasdf

3sample output

asdfas

df分析:#include #include #include int main()

{ char a[100];

int i,n,len;

gets(a);

scanf("%d",&n);

len=strlen(a);

if(n==0)

puts(a);

else for(i=0; i

結果:

知識點總結:

學習了簡單字串的運用。

心得體會:

注意數字應該從0開始計數。

第十五周 字串的修改(串)

include include int main if count 0 printf no else puts s return 0 int isequal char s,char t,int len for i 0 ireturn i0 len p len t else for i len p i...

第十五周OJ 字串插入

問題描述 將字串t插入到字串s中,在位置pos後插入。不得使用字串操作函式,輸出組合成的字串。檔名稱 the fifteenth week oj2274 輸入 輸入兩個字串 t和s 和要插入的位置 pos 輸出 輸出組合後的字串 includeint main char t 100 s 100 r ...

字串格式化輸出

你好 info s name s age s salary s name,name,age,job s 也可以換成 d s代表 string d 代表只能接受數字 他的作用是幫助你檢測輸入的資料型別 還有乙個 f 代表的是浮點小數 注意 s點位符要和括號裡的位數相等 msg 這個地方是不顯示的 na...