(2019年9月1日)
■使用ソフト
・Visual Studio Community 2019
■言語
・C/C++
■Windows SDK バージョン
・10.0.17763.0
※Windows SDK バージョンの変更方法
■手順
1.以下をベースにコード変更する。
【C++】 メッセージボックスの作成
2.C++ファイル(.cpp)を以下のとおり変更する。
#include <windows.h>
#include <wchar.h>
namespace X
{
//球の体積
double SphereVolume(double radius)
{
return 4.0 / 3.0 * 3.1415926535 * radius * radius * radius;
}
}
int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow)
{
WCHAR wcText[256];
swprintf(wcText, 256, L"%lf", X::SphereVolume(3.0));
MessageBox(NULL, wcText, L"namespace", MB_OK);
return 0;
}
#include <wchar.h>
namespace X
{
//球の体積
double SphereVolume(double radius)
{
return 4.0 / 3.0 * 3.1415926535 * radius * radius * radius;
}
}
int APIENTRY wWinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPWSTR lpCmdLine, _In_ int nCmdShow)
{
WCHAR wcText[256];
swprintf(wcText, 256, L"%lf", X::SphereVolume(3.0));
MessageBox(NULL, wcText, L"namespace", MB_OK);
return 0;
}
3.実行結果(球の体積が表示される)
0 件のコメント:
コメントを投稿