你好我在這個程序,它是wcout不是`STD」的成員的錯誤。我也使用iostream,因爲你看到,但沒有工作。我有Dev-C++ 4.9.9.2和我的操作系統是XP SP3 我需要你的幫助。 感謝您的空閒時間。C++提供了一個錯誤
#include <iostream>
#include <cstring>
#include <cwchar>
using namespace std;
const wchar_t alphabet[] ={'A', 'B', 'C', 'Ç', 'D', 'E', 'F', 'G', 'Ğ', 'H', 'I',
'İ', 'J', 'K', 'L', 'M', 'N', 'O', 'Ö', 'P', 'R', 'S',
'Ş', 'T', 'U', 'Ü', 'V', 'Y', 'Z', '0', '1', '2', '3',
'4', '5', '6', '7', '8', '9', '.', ',', ':', ';', ' '};
const int char_num =44;
void cipher(wchar_t word[], int count, int key)
{
int i = 0;
while(i < count) {
int ind = -1;
while(alphabet[++ind] != word[i]) ;
ind += key;
if(ind >= char_num)
ind -= char_num;
word[i] = alphabet[ind];
++i;
}
}
void decipher(wchar_t word[], int count, int key)
{
int i = 0;
while(i < count) {
int ind = -1;
while(alphabet[++ind] != word[i]) ;
ind -= key;
if(ind < 0)
ind += char_num;
word[i] = alphabet[ind];
++i;
}
}
int main()
{
wchar_t text[] = L"ABJT;";
int len = wcslen(text);
std::wcout << text << std::endl;
cipher(text, len, 2);
std::wcout << text << std::endl;
decipher(text, len, 2);
std::wcout << text << std::endl;
return 0;
}
您是否嘗試過[DEV-C++使用MinGW]的最新版本(http://sourceforge.net/projects/orwelldevcpp/files/Portable%20Releases/)? ? – greatwolf 2013-03-23 00:07:13
我現在同樣的問題,試圖:( – thomas123 2013-03-23 00:20:02
你嘗試新的人之前先卸載舊版本我只是測試它,它爲我編譯罰款[輸出C++打錯一個字母(HTTP的 – greatwolf 2013-03-23 00:39:31