-2

私はプログラミングを始めたばかりで、自分が何をしているのかわかりません。私の教授は私たちに行うべきプログラムセットを与え、私はそれを完了しましたが、ファイルをコンパイルすると

" J:\Untitled1.cpp 関数 `int main()' 内:

"36 J:\Untitled1.cpp は '<<' トークンの前に一次式を予期しました"

これが完全なセットです。私が初心者であることを思い出してください。

/** CONCEPTS PROGRAM #1, TEMPLATE
PROGRAM Name: Yay.cpp
Program/assignment: 
Description: Finds total
Input(s): 
Output(s): 
suffering_with_c++
Date of completion 
*/
//included libraries
#include <iostream>
#include <iomanip>
#include <stdlib.h>
#include <time.h.>

#define cls system("cls")
#define pauseOutput system("pause")//

using namespace std;
int main() 
{
    //variable declaration/initialization
    time_t nowIsTheMoment;
    time(&nowIsTheMoment); 
    string dateTime;//

    cls;
    cout <<"\new live in the moment--only this moment is ours. The Current Date and time is: "
    <<ctime (&nowIsTheMoment); << endl;//
    cout << "\nMy name is Moe Joe." <<endl;//
    cout << endl << "I think Computer Programming with C++ will be a bit more PHUN now!" 
         << endl;
    dateTime = ctime(&nowIsTheMoment);//
    cout << endl << "\nYo ho! I am here now...\n" << endl;
    cout << endl << "The Current Date and time is: "
     <<dateTime <<endl;//
    cout << "\nI know clearly that, if I DO NOT comment my programs/project work thorougly, I will lose substantial points.\n" ;

    cout << "\bHere is Pause Output in action....\n" << endl;//
    pauseOutput; //
    cls;//
    return 0; 
}
4

3 に答える 3

0

.afterを削除することから始め<time.h>てください。おそらく役立つはずです。それからあなたはこれを手に入れました

ctime (&nowIsTheMoment); << endl;

左オペランドが必要なためコンパイルできません<<(つまり、セミコロンを削除します)。

失礼なことを言うつもりはありませんが、StackOverflow で質問する前にもう少し頑張ってください...

于 2013-09-04T06:00:22.717 に答える