cout

    14熱度

    2回答

    我每次做'cout < < < endl'或者甚至'cout < <「\ n」'然後啓動我的程序在Windows下輸出到一個文件(「a.exe < test.in> result.out」)我在「result.out」中得到了「\ r \ n」行結尾。 在地球上有一種方法可以阻止它這樣做,只是在每個'cout < <「上輸出」\ n「\ n」'? 在此先感謝。

    1熱度

    5回答

    C++的std :: cout似乎是一件有趣的事情。今天我嘗試了我的C++編譯器,下面的程序: cout<<"!"<<"@"<<endl; cout<<"!"<<cout<<"@"<<endl; cout<<"!"<<(cout<<"@")<<endl; ,輸出相當好奇: [email protected] [email protected] @!0x601068 第一行是行人;第

    4熱度

    5回答

    我想要打印出文本文件的最後10行。與此程序我已經能夠讀取整個文本文件,但我不知道如何處理文本文件保存的數組,如何幫助? // Textfile output #include<fstream> #include<iostream> #include<iomanip> using namespace std; int main() { int i=1; char ze

    4熱度

    1回答

    我有一個變量LPTSTR,我打印到std::cout與<<。在ANSI系統中(不知道確切的位置)它工作正常,它會打印字符串。現在在一個Unicode系統中,我得到一個十六進制地址而不是字符串。那麼,爲什麼LPSTR從LPWSTR(到LPTSTR是,如果沒有定義UNICODE解決)行爲方式(...如果UNICODE定義)以及如何打印由後者指向的字符串?

    0熱度

    2回答

    #include <cstdlib> using namespace std; /* * */ int main(int argc, char** argv) { cout << "COME AT ME BRO!\n" return 0; } 它說,COUT是無法解決標識 的C++代碼幫助的設置是否正確,我只是不知道whatelse它可能是。

    0熱度

    1回答

    這裏是我的代碼: #include <iomanip> #include <fstream> #include <iostream> using namespace std; int main() { ifstream fin; fin.open("Celsius.txt"); if (!fin.good()) throw "I/O error";

    0熱度

    2回答

    #include <iostream> using namespace std; //error here int main() { cout << "COME AT ME BRO!\n"; //error here return 0; } cout is unidenulatiable。我之前有過這個問題,但是我的編譯器沒有工作,所以我重新安裝了IDEBean

    0熱度

    3回答

    char word[10]; int n=5; while(n--) { cin>>word; cout<<n<<" "<<word<<" "; } 輸出: ABC DEF GHI JKL MNO 4 ABC 3 DEF 2 GHI 1 JKL 0 MNO 現在,我的問題是,當輸入緩衝器遇到blankspace(」「)會發生什麼?可以看出,n在每個空格後遞減,

    0熱度

    3回答

    我的問題很簡單。我在C++程序中有一個'for'語句,當我編譯時忽略了我的cout。 我使用的Xcode,在Xcode編譯和這裏是我的代碼: #include <iostream> using namespace std; int main() { cout << this prints" << endl; for(int i=0; i>10; i+

    1熱度

    1回答

    我的cout語句有一個非常奇怪的問題。我只用XCode 4試過這個。例如,如果我寫, cout << "this works" << endl; cout << "this doesnt"; cout << memorySizeLimit << " blocks of memory available." << endl; 我看到我的調試器控制檯中的所有三個輸出語句。但是,如果我將訂單更改