fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. return 0;
  7. }
Success #stdin #stdout 0s 16064KB
stdin
#include <iostream>
using namespace std;

int main()
{
	cout << 15 << endl;         	// 数字の出力
	cout << oct << 15 << endl;
	cout << hex << 15 << endl;
	cout << dec << 15 << endl;

	cout << 0b1111 << endl;
	cout << 017 << endl;
	cout << 0xf << endl;

	cout << 10 + 5  << endl;
	cout << 5 * 3  << endl;

	system("pause");
	return 0;  
}
stdout
Standard output is empty