2016-07-12から1日間の記事一覧

C++勉強2日目

C++

時間が空いたが2日目 第2章 Helloプログラム http://codepad.org/5vEVvmIL 第3章 計算してみよう http://codepad.org/TsZyGnP0 #include <iostream>using namespace std; int main(){ cout << "9 / 2 = " << 9 / 2 << endl; cout << "9 % 2 = " << 9 % 2 << endl; cout </iostream>…