Toggle navigation
Courses
問題
標籤
用戶
AD 20161208 exercise 1
0
喜歡
0
不喜歡
1.2k
瀏覽
子字串
請設計一個程式,使用者會輸入兩個字串,兩個字串間用一個空格隔開,每個字串的內容只會包含大小寫的英文字母,請判斷第二個字串是否出現在第一個字串內。請將大小寫視為同一個字。
輸入範例1:
friEND end
輸出範例1:
There is "end" in "friEND"
輸入範例2:
friEND friends
輸出範例2:
There are no "friends" in "friEND"
最新提問
12月 8, 2016
分類:
2016-1 程式設計(一)AD
|
用戶:
Shun-Po
(
18k
分)
|
1.2k
瀏覽
回答
評論
請
登錄
或者
註冊
後再添加評論。
你的回答
昵稱(可選):
如果我的回答被採納或者有評論時發送郵件到這個地址上:
如果我的回答被採納或者有評論時發送郵件通知我
私隱:你的郵箱僅用於接收通知。
反垃圾郵件驗證:
若要避免將來驗證,請
登錄
或者
註冊
。
添加回答
取消
23
個回答
0
喜歡
0
不喜歡
內容已隱藏#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char* argv[]) {
* ** *** * ** * * * ** source[80];