[問題] switch...case的問題

作者: marx625001 (Dain)   2017-09-08 10:23:24
開發平台(Platform): (Ex: Win10, Linux, ...)
Win7
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
Dev C++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
stdio.h stdlib.h
問題(Question):
為什麼我的switch...case,無法成功載入,會直接跳default:("Error\n);
餵入的資料(Input):
預期的正確結果(Expected Output):
printf("Choice your mode: A.Read B.Write C.Randread D.Randwrite E.Randr
F.RWmixread=70 \n");
scanf("%c", &mode);
輸入A.B.C.D.E等,會printf出來結果
錯誤結果(Wrong Output):
結果直接跳到Error
程式碼(Code):(請善用置底文網頁, 記得排版)
#include<stdio.h>
#include<stdlib.h>
int main()
{
char filename[10];
int iodepth, bs, size, numjobs, runtime;
printf("Where is your file? (absult postion)\n");
scanf("%s", filename);
printf("Setting your IO module(default=1)\n");
scanf("%d", &iodepth);
printf("What is your I/O size(-bs)?\n");
scanf("%d", &bs);
printf("How much the test file size\n");
scanf("%d", &size);
printf("How many your number of jobs?\n");
scanf("%d", &numjobs);
printf("How long do you wany to test?(sec)\n");
scanf("%d", &runtime);
char mode;
printf("Choice your mode: A.Read B.Write C.Randread D.Randwrite E.Randrw
F.RWmixread=70 \n");
scanf("%c", &mode);
switch(mode)
{
case 'A':
printf("Fuck u\n");
printf("fio -filename=%s -direct=1 -iodepth %d -thread -rw=read
ioengine=libaio -bs=%dm -size=%dG -numjobs=%d -runtime=%d -group_reporting
-name=mytest\n", filename, iodepth, bs, size, numjobs, runtime);
break;
case 'B':
printf("fio -filename=%s -direct=1 -iodepth %d -thread -rw=write
ioengine=libaio -bs=%dm -size=%dG -numjobs=%d -runtime=%d -group_reporting
-name=mytest\n", filename, iodepth, bs, size, numjobs, runtime);
break;
case 'C':
printf("fio -filename=%s -direct=1 -iodepth %d -thread
-rw=randread ioengine=libaio -bs=%dm -size=%dG -numjobs=%d -runtime=%d
-group_reporting -name=mytest\n", filename, iodepth, bs, size, numjobs,
runtime);
break;
case 'D':
printf("fio -filename=%s -direct=1 -iodepth %d -thread
-rw=randwrite ioengine=libaio -bs=%dm -size=%dG -numjobs=%d -runtime=%d
-group_reporting -name=mytest\n", filename, iodepth, bs, size, numjobs,
runtime);
break;
case 'E':
printf("fio -filename=%s -direct=1 -iodepth %d -thread
-rw=randrw ioengine=libaio -bs=%dm -size=%dG -numjobs=%d -runtime=%d
-group_reporting -name=mytest\n", filename, iodepth, bs, size, numjobs,
runtime);
break;
default:
printf("Error\n");
}
return 0;
}
補充說明(Supplement):
作者: Hazukashiine (私は幸せです)   2017-09-08 10:32:00
你先把 mode 印出來看看啊
作者: Django (Cython)   2017-09-08 10:52:00
可能因為code有髒話被和諧了
作者: marx625001 (Dain)   2017-09-08 11:02:00
嗚嗚嗚 那句話是因為翻爛了一堆C語言的書,還是沒結果我用printf看了下,mode沒答案
作者: stucode   2017-09-08 11:05:00
大小寫?mode沒答案? 那八成是吃到換行了
作者: Django (Cython)   2017-09-08 11:16:00
應該是runtime的換行被mode吃進去了吧
作者: marx625001 (Dain)   2017-09-08 11:17:00
吃進去? 那請問要怎麼解決這問題??
作者: stucode   2017-09-08 11:19:00
先把換行吃掉再scanf就好
作者: enonrick (EnonRick)   2017-09-08 11:20:00
getc(stdin)
作者: shadow0326 (非議)   2017-09-08 11:20:00
scanf(" %c", &mode); 試試看
作者: marx625001 (Dain)   2017-09-08 11:24:00
s大,我資質餘噸,剛入寫程式,所以還是有點不太了解可以給我關鍵字之類的,我很願意自己google學習enonrick 我還沒用過那個指令過,我會上網查的shadow0326 我剛試過,他還是顯示Error
作者: james732 (好人超)   2017-09-08 11:28:00
scanf newline ←用這個google?
作者: stucode   2017-09-08 11:32:00
一時之間想不到用什麼關鍵字可以找到相關問題……也許可以試試scanf input buffer之類的簡單來說就是上次輸入的時候,例如輸入123然後[Enter]輸入緩衝區會填入"123\n"。上個scanf只consume掉整數的"123"部分,下一個scanf("%c", ...)讀到的就是還留在buffer裡面的"\n"。
作者: moebear (萌熊)   2017-09-08 11:37:00
吃到換行了 scanf前面放一個getchar把它吃掉就好
作者: stucode   2017-09-08 11:39:00
所以只要想辦法把那個"\n"吃掉就好,樓上說的getchar()就是其中一個方法。
作者: Django (Cython)   2017-09-08 11:41:00
或是這樣 scanf("%d\n", &runtime);
作者: shadow0326 (非議)   2017-09-08 11:42:00
https://ideone.com/1c9N0a 為什麼我可以QQ
作者: Django (Cython)   2017-09-08 11:42:00
還有是Choose your mode不是Choice... (離題)
作者: marx625001 (Dain)   2017-09-08 11:44:00
那我想再問一下,到底怎麼看出來的啊?因為我都看書書上沒解釋到這個過shadow0326 那我再試試看,可能我有地方少打
作者: moebear (萌熊)   2017-09-08 11:55:00
摁...... IDE可以設中斷點觀察變數的值 可以發現mode吃到'\n' 之後應該會發現是scanf的問題 去google scanf 換行就可以找到一些想看的東西
作者: stucode   2017-09-08 12:13:00
有些入門書會省略細節,沒有解釋。C Primer Plus中好像有提到這方面的東西。不過其實主要還是像樓上說的,用debugger觀察然後再google問題。
作者: marx625001 (Dain)   2017-09-08 13:20:00
感謝各位大大的幫忙,我已經成功可以輸出進到switch了
作者: Lipraxde (Lipraxde)   2017-09-08 14:28:00
scanf前先用fflush(stdin)應該也可以解決這問題
作者: james732 (好人超)   2017-09-08 17:08:00
fflush(stdin)記得不是標準做法https://i.imgur.com/A76Phy7.jpg
作者: Lipraxde (Lipraxde)   2017-09-08 17:15:00
謝謝J大,受教了
作者: james732 (好人超)   2017-09-08 17:30:00
有人知道最早做fflush(stdin)的是哪個編譯器嗎XD其實我覺得所有編譯器都做成清除stdin也不錯?
作者: CoNsTaR ((const *))   2017-09-08 20:18:00
不這樣做是因為以前有些硬體的限制沒辦法 flush stdin 吧?
作者: bben900911 (Ben)   2017-09-08 21:47:00
我自己的習慣上,只用printf大法時會在目標變數周圍加上[],以防有甚麼肉眼看漏的東西被我忽略
作者: uranusjr (←這人是超級笨蛋)   2017-09-11 13:47:00
也有個可能是某些平台的 implementation 就有這個副作用然後被開發人員 exploit 之後就只好一直維護了

Links booklink

Contact Us: admin [ a t ] ucptt.com