[問題] bool變數出while迴圈之後消失了?
開發平台(Platform):
Programiz C Online Compiler
問題(Question):
如下程式碼,boolean variable flag出while迴圈就消失了,有人知道原因嗎?
餵入的資料(Input):
2 (隨便輸入的數字)
預期的正確結果(Expected Output):
2
The internal boolean variable is 1
The external boolean variable is 1
錯誤結果(Wrong Output):
2
The internal boolean variable is 1
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
#include <stdio.h>
#include <stdbool.h>
int main() {
bool flag = true;
int digit;
while (scanf("%d", &digit) != EOF) {
printf("The internal boolean variable is %d\n", flag);
}
printf("The external boolean variable is %d\n", flag);
return 0;
}
先謝謝了!
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 1.165.252.113 (臺灣)
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1697859236.A.865.html
→
10/21 11:45,
1年前
, 1F
10/21 11:45, 1F
就是數字+空白鍵+ENTER,例如以下輸入
2 2
會得到以下輸出:
The internal boolean variable is 1
The internal boolean variable is 1
如果卡在迴圈裡面不是應該會一直印The internal boolean variable is 1嗎?
謝謝QQ
※ 編輯: ericliu8168 (1.165.252.113 臺灣), 10/21/2023 12:06:52
→
10/21 12:11,
1年前
, 2F
10/21 12:11, 2F
→
10/21 12:11,
1年前
, 3F
10/21 12:11, 3F
→
10/21 12:13,
1年前
, 4F
10/21 12:13, 4F
→
10/21 12:14,
1年前
, 5F
10/21 12:14, 5F
→
10/21 12:15,
1年前
, 6F
10/21 12:15, 6F
謝謝樓上 nh60211as 及 Richun 2位帥哥
我剛剛開另一個ideone編譯器,結果能得到預期結果了
非常感謝QQ
※ 編輯: ericliu8168 (1.165.252.113 臺灣), 10/21/2023 12:21:52
→
10/24 08:55,
1年前
, 7F
10/24 08:55, 7F
→
10/24 08:57,
1年前
, 8F
10/24 08:57, 8F
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章