私はC++を始めました。私は電子ブックを読んでいます。私は本からのコードをコピーして、Visual C++にプリコンパイルされたヘッダ付きの新しいプロジェクトw32コンソールアプリケーションの下に置いた。まあ、私はプリプロセッサディレクティブの行でiostreamを使用すると、私は周りを検索し、なぜiostreamがうまくいかないのか理解できません。Visual C++はiostreamを許可していません
1>------ Build started: Project: dd, Configuration: Debug Win32 ------ 1> stdafx.cpp 1> dd.cpp 1>c:\documents and settings\leon\my documents\visual studio 2010\projects\dd\dd\dd.cpp(24): fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "StdAfx.h"' to your source? ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
1 // This program calculates the user's pay.
2 #include <iostream>
3 using namespace std;
4
5 int main()
6 {
7 double hours, rate, pay;
8
9 // Get the number of hours worked.
10 cout << "How many hours did you work? ";
11 cin >> hours;
12
13 // Get the hourly pay rate.
14 cout << "How much do you get paid per hour? ";
15 cin >> rate;
16
17 // Calculate the pay.
18 pay = hours * rate;
19
20 // Display the pay.
21 cout << "You have earned $" << pay << endl;
22 return 0;
23 }
ok。それは私の上にそれがうそをつくようになった。 – user1211008