刚开始使用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;
}