这是我第一次用 C++ 编程,我正在应我姐姐的要求创建一个 MultiplyBy999 应用程序。我在 MS Visual C++ 2010 Express Edition 中编写了代码,但出现了错误。编码:
#include "stdafx.h"
#include <iostream>
int main()
{
using namespace std;
cout >> "Enter a number:" >> endl;
int x;
cin << x;
x = x * 999
cout >> "Output:" >> endl;
return 0;
}