C ++代码在VS 2017中执行,但在VSCode中不执行

问题描述 投票:-2回答:1

我有这个简单的C ++代码。它在Microsoft Visual Studio 2017中正确执行。

// Author:    Herbert Schildt 
// Modified:  Qiang Hu
// File name: ~ftp/pub/class/cplusplus/Array/Array3.cpp
// Purpose:   Use sqrs[][] -- two dimentional integer
//        array to store integers from 1 to 10 and
//        their squares.  
//            Ask user for a number, then look up this
//        number in the array and then print out its
//            corresponding square.

#include "stdafx.h"
#include <iostream>
#include <vector>
using namespace std;

int main()
{
  // C++ allows for the initialization of arrays.  In the following,
  // we are initializing a 10x2 integer array. After initialization,
  // sqrs[0][0] = 1
  // sqrs[0][1] = 1
  // sqrs[1][0] = 2
  // sqrs[1][1] = 4 
  // and so on
vector<vector<int> > sqrs = { {1, 1}, 
                    {2, 4}, // The square of 2 is 4,and so on
                    {3, 9}, 
                    {4, 16}, 
                    {5, 25}, 
                    {6, 36}, 
                    {7, 49}, 
                    {8, 64}, 
                    {9, 81}, 
                    {10, 100} 
                  };    

  int i, j;

  cout << "Enter a number between 1 and 10: ";
  cin >> i;

  // look up i
  for(j = 0; j < 10; j++)
    if(sqrs[j][0] == i) break; // break from loop if i is found 
  cout << "The square of " << i << " is " ;
  cout << sqrs[j][1] << endl;

  return 0;
}

我试图在Windows下使用VSCode编译相同的代码,但代码不执行。它给了我以下错误。

Untitled-2.cpp: In function 'int main()':
Untitled-2.cpp:34:19: error: in C++98 'sqrs' must be initialized by constructor, not by '{...}'
                   };
                   ^
Untitled-2.cpp:34:19:   required from here
Untitled-2.cpp:34:19: warning: extended initializer lists only available with -std=c++11 or -std=gnu++11

我想VSCode使用的编译器不是C ++ 11,而是C ++ 98。如果是这种情况,我怎么能将编译器更改为C ++ 11。 (在这里,我一直在寻找解决方案,但从未找到有用的东西。)如果没有,如何解决这个问题?

c++ visual-studio c++11 visual-studio-code
1个回答
1
投票

在tasks.json文件中,您可以为编译器指定参数,如下所示:

{
"version": "0.1.0",
"command": "g++",
"isShellCommand": true,
"args": ["-std=c++11", "example.cpp"], //<- here you can specify c++ version as well as any other options
...

}
© www.soinside.com 2019 - 2024. All rights reserved.