c++
ツール>オプション>テキストエディタ>C/C++, Direct3D Shader>全般>行番号
Visual Studio C++ 2008にインストールするとします。 http://www.boostpro.com/downloadから最新のインストーラをダウンロード。 導かれるがままにインストールした後、Visual Studioでインクルードの設定。 ツール>オプション>VC++ディレクトリ>ディレ…
#include <iostream> #include <stdlib.h> #include <algorithm> #include <conio.h> using namespace std; const int NUM=100; int main () { int data[NUM]; for(int i=0;i</conio.h></algorithm></stdlib.h></iostream>
#include <iostream> #include <conio.h> #include <string> using namespace std; void main(){ string s; getline(cin, s); cout << s << endl; getch();//一時停止 } //cin >> s;で"hello world"と入れてもちぎれる(cout << s;の結果が"hello")</string></conio.h></iostream>
#include <iostream> #include <conio.h> using namespace std; void main(){ char line[100]; cin.getline(line, sizeof(line));//スペースを含む入力を、ちぎらず受け付ける cout << "input : " << line << endl; getch();//一時停止 }</conio.h></iostream>
#include <iostream> #include <sstream> using namespace std; class Base{ private: static int counter; int no; public: Base(){ no=counter; counter++; } int getNo() const{return no;} string to_string() const; }; //オブジェクトの情報を文字列に変換 string Base::t</sstream></iostream>…
#include <iostream> #include <conio.h> using namespace std; class Base{ private: static int counter; int no; public: Base(){ no=counter; counter++; } int getNo(){return no;} }; int Base::counter=0;//使徒は0号機から const int SITO_MAX=10;//使徒の数 void main</conio.h></iostream>…
英語で書かれているけれど、ほとんどがcodeなので読みやすい。 日本語でSTLの基礎を読んだ後は、 ここを読んでsecond stepとすればよいと思う。 とても分かりやすいし、美しい! http://www.topcoder.com/tc?module=Static&d1=tutorials&d2=standardTemplate…