2018-02-13から1日間の記事一覧

UbuntuでC++

C++

C++を勉強して見ようと思いたって、hello worldを書いてのっけからエラーで動かなかったので記録しておきます。環境はubuntu16.04です。 //hello.cpp #include <iostream> int main() { std::cout << "hello world\n \t初めてのC++" << std::endl; } これで動きました</iostream>…