codeup墓地練習題2156(考研複試練習)

2021-09-12 21:17:37 字數 630 閱讀 5396

題目描述

天勤論壇中毒了……為了防毒,我們必須刪除源**裡面的某些字元。

即從第一字串中刪除第二個字串中所有的字元。

輸入輸入有多組資料。

每組資料兩行,每行乙個字串(只包含大小寫字母,長度<=2^18)。從第一字串中刪除第二個字串中所有的字元。

輸出對應每組資料,輸出改變後的第乙個字串。

樣例輸入

theyarestudents

aeiou

acmclub

cb

樣例輸出

thyarstdnts

amclu

#include"stdio.h"

int main();

char s2[100]=;

char s[100]=;

int t=0;

gets(s1);

gets(s2);

for(int i=0;s1[i]!='\0';i++)

if(flag)

s[t++]=s1[i];

} puts(s);

return 0;

}

codeup墓地 習題6 12

include int main if 48 a i a i 57 if 97 a i a i 122 puts a 本體關鍵在於對ascii表中0 9,a z,a z位置的認知 0 9對應48 57,a z對應65 90,a z對應97 122.在字元陣列中直接輸入數或者字元均代表的是ascii值...

python書中練習題 python練習題

1 定義乙個空列表,接收從鍵盤輸入的整數,把列表傳給乙個從大到小排序的函式,再輸出排序後的列表的值 listex b 0 a int input 請輸入列表長度 while b a num int input 請輸入字元 b 1 print listex sum 0 for i in range 0...

python的練習題 Python練習題

1 使用while迴圈輸入1 2 3 4 5 6 8 9 10 i 0while i 10 i i 1 if i 7 continue print i 結果 e python python python test.py1 2 求1 100的所有數的和 i 0sum 0 while i 100 i 1...