当前项目源代码中的更改不会影响编译器的输出。(Microsoft Visual Studio)

时间:2018-07-16 21:02:05

标签: visual-studio-2012

刚开始使用Microsoft Visual Studio。当我创建一个新项目并编写源代码时,编译器输出是完美无缺的。但是,当我对源代码进行更改时,它们不会影响编译器的输出。现在唯一的解决方案是创建一个新项目并复制粘贴源代码。

项目6和项目7的源代码相同,但项目6不显示“提示”消息。 (在第一次编译后添加的位置)

#include "stdafx.h"
#include <iostream>

int main()
    std::cout << "Please give me two numbers!";

{

    int von = 0, bis = 0;
    std::cout << "Where do we start?" << std::endl;
    std::cin >> von;
    std::cout << "Where do we go?";
    std::cin >> bis;
    std::cout << "I will now display every number \n in the given range!";
    while (von <= bis)
        {
        std::cout << von<<" ";
        ++von;
        }
    int a = 0;
    std::cin >> a;
    return 0;
}

0 个答案:

没有答案