25
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WindowsでC++の実行環境を構築してみた

Last updated at Posted at 2020-01-04

概要

競技プログラミングには、実行速度が速いC++がおすすめということなので勉強するための環境を作成する。
Visual Studio でもいいのだが、アプリを作るわけではないのでコンソール実行ができればよいという方針。重たいし。
とりあえずC++触ってみたい人向け。

環境

  • Windows10 Home
  • MinGW
  • Visual Studio Code 1.41.1

インストール

MinGWのインストールとコンパイラのインストールを行う

以下のサイトの「1. コンパイラのインストール」を参照。画像付きで分かりやすい。
2020年版 C言語/C++ 入門者のための環境構築 (Windows編) - LYNCSブログ

Visual Studio Code のインストール

以下の公式サイトからインストール。
Visual Studio Code – コード エディター | Microsoft Azure

C++ でHello World

以下のソースを準備する。

hello.cpp
#include <iostream>

using namespace std;

int main()
{
    cout << "hello world." << endl;
    return 0;
}

実行

コンパイル

Visual Studio Codeのコンソールから以下のコマンドを実行する。

g++ -o hello hello.cpp

実行

./hello.exe

実行結果

$ ./hello.exe
hello world.

Hello Worldが出力された。

終わりに

とりあえず構文から勉強していく。

参考サイト

25
23
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
25
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?