[問題] C++ 程式碼問題
開發平台(Platform):
VC++
問題(Question):
最近在看C++ primer 4e 自行摸索,
書上有些程式碼如下面這段打到電腦上時會出現錯誤,
自己看不出問題在哪裡,想要請教一下謝謝...
這是書上p289的程式碼(第八章形勢狀態)
程式碼(Code):(請善用置底文網頁, 記得排版)
//因為我是累積練習的所以include很多東西請見諒...
#include <iostream>
#include <string>
#include <vector>
#include <cctype>
#include <bitset>
#include <cstring>
#include <stdexcept>
#include <cstddef>
#include <cassert>
#include <cstdlib>
using std::cin; using std::cout; using std::string;
using std::endl; using std::vector; using std::toupper;
using std::bitset;
int main()
{
int i;
while (cin >> i, !cin.eof())
{
if (cin.bad())
throw runtime_error(" IO stream corrupted");
if (cin.fail()){
cerr << "bad data, try again";
cin.clear(istream::failbit);
continue;
}
}
system("pause");
return 0;
}
補充說明(Supplement):
附圖,主要是紅線的部分好像都undeclared或not found,我在想是不是我少include什麼,不過書上找了找好像沒找到線索..
http://i.imgur.com/HbEP9s3.png

--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 218.164.135.97
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1429350451.A.FEB.html
※ 編輯: name2name2 (218.164.135.97), 04/18/2015 17:48:55
→
04/18 17:51, , 1F
04/18 17:51, 1F
→
04/18 18:26, , 2F
04/18 18:26, 2F
※ 編輯: name2name2 (218.164.135.97), 04/18/2015 18:28:23
※ 編輯: name2name2 (218.164.135.97), 04/18/2015 18:30:27
→
04/18 18:45, , 3F
04/18 18:45, 3F
→
04/18 18:46, , 4F
04/18 18:46, 4F
→
04/18 18:47, , 5F
04/18 18:47, 5F
→
04/18 19:03, , 6F
04/18 19:03, 6F
→
04/18 19:03, , 7F
04/18 19:03, 7F
→
04/18 19:03, , 8F
04/18 19:03, 8F

→
04/18 19:09, , 9F
04/18 19:09, 9F
→
04/18 19:14, , 10F
04/18 19:14, 10F
→
04/18 19:15, , 11F
04/18 19:15, 11F

推
04/18 20:46, , 12F
04/18 20:46, 12F
→
04/18 20:48, , 13F
04/18 20:48, 13F
→
04/18 21:04, , 14F
04/18 21:04, 14F
→
04/18 21:05, , 15F
04/18 21:05, 15F
→
04/18 21:06, , 16F
04/18 21:06, 16F
→
04/18 21:07, , 17F
04/18 21:07, 17F
→
04/18 21:08, , 18F
04/18 21:08, 18F
推
04/18 21:19, , 19F
04/18 21:19, 19F
→
04/18 21:20, , 20F
04/18 21:20, 20F
→
04/18 21:34, , 21F
04/18 21:34, 21F
→
04/18 21:35, , 22F
04/18 21:35, 22F
→
06/05 15:56, , 23F
06/05 15:56, 23F
→
06/05 15:56, , 24F
06/05 15:56, 24F
→
06/05 15:57, , 25F
06/05 15:57, 25F
→
06/05 15:57, , 26F
06/05 15:57, 26F
→
06/05 15:58, , 27F
06/05 15:58, 27F
→
06/05 15:58, , 28F
06/05 15:58, 28F
C_and_CPP 近期熱門文章
PTT數位生活區 即時熱門文章