C++ MessageBox

C++

デフォルト MessageBoxA(NULL, "foo bar baz", "Default", MB_OK); エラー MessageBoxA(NULL, "foo bar baz", "Error", MB_OK|MB_ICONERROR); 警告 MessageBoxA(NULL, "foo bar baz", "Warning", MB_ABORTRETRYIGNORE|MB_ICONWARNING); 問いかけ MessageBoxA…

C#のテスト その2

C#

C#で記事を書いてみるテスト その2

C++のテスト

C++

C++で記事を書いてみるテスト #include "stdafx.h" #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { cout << "Hello World." << endl; return 0; } C++で記事を書いてみるテスト</iostream>

C#のテスト

C#

C#の記事を書いてみるテスト static void Main(string[] args) { Console.WriteLine("Hello World."); } C#の記事を書いてみるテスト