星期查詢(MOOC)

2021-10-06 10:03:16 字數 788 閱讀 8032

星期查詢

任意輸入英文的星期幾,通過查詢如圖所示的星期表,輸出其對應的數字,若查到表尾,仍未找到,則輸出錯誤提示資訊。

程式執行結果示例1:

please enter a string:

friday↙

friday is 5

程式執行結果示例2:

please enter a string:

fruday↙

not found!

輸入提示資訊:「please enter a string:\n」

輸入格式: 字串輸入採用gets()函式

輸出格式:

找到了,輸出:"%s is %d\n"

沒找到,輸出:「not found!\n」

注意:為避免出現格式錯誤,請直接拷貝貼上上面給出的輸入、輸出提示資訊和格式控制字串!

#include

#include

intmain()

;printf

("please enter a string:\n");

gets

(str)

;int len =

strlen

(str)

;//計算輸入字串的長度

for(

int i=

0; i<

7; i++)}

if(count == len)}}

printf

("not found!\n");

return0;

}

6 14 查詢星期

6 14 查詢星期 15分 本題要求實現函式,可以根據下表查詢到星期,返回對應的序號。序號 星期 0 sunday 1 monday 2 tuesday 3 wednesday 4 thursday 5 friday 6 saturday 函式介面定義 int getindex char s 函式g...

習題11 2 查詢星期

習題11 2 查詢星期 15分 本題要求實現函式,可以根據下表查詢到星期,返回對應的序號。序號星期 0sunday 1monday 2tuesday 3wednesday 4thursday 5friday 6saturday int getindex char s 函式getindex應返回字串s...

4 星期查詢(4分)

4 星期查詢 4分 題目內容 任意輸入英文的星期幾,通過查詢如圖所示的星期表,輸出其對應的數字,若查到表尾,仍未找到,則輸出錯誤提示資訊。程式執行結果示例1 please enter a string friday friday is 5 程式執行結果示例2 please enter a strin...