Awesome Hacks!

プログラミング初心者なので地道に勉強していきます。分からない人の立場から整理していきます。

2014-11-27から1日間の記事一覧

C++の自分的速習まとめ

#include <iostream> // Cでいうところの<stdio.h> using namespace std; //これが無いと、各行でstd::coutなどが必要 #include <iomanip> //setw, left,rightのヘッダー #include <string> //文字列の宣言3(string型)に使用する。 //プロトタイプ宣言 void a_plus_b(void); // プロトタイプ</string></iomanip></stdio.h></iostream>…