我的这段程序有错误吗
我有以下的一段程序,有错误吗?不知道,我是菜鸟,刚入门,按常理我就是不明白,但是这个是一个程序的正确版本,正确的,但是我就是得不到结果,出现的错误是:--------------------Configuration: yy - Win32 Debug--------------------
Compiling...
Error spawning cl.exe
XT2-1.OBJ - 1 error(s), 0 warning(s)
为什么?……………………
……………………
………………
请各位大虾赐教……
#include <iostream>
using namespace std;
class Time
{public: //成员改为公用的
int hour;
int minute;
int sec;
};
Time t;
void set_time(void) //在main函数之前定义
{
cin>>t.hour;
cin>>t.minute;
cin>>t.sec;
}
void show_time(void) //在main函数之前定义
{
cout<<t.hour<<":"<<t.minute<<":"<<t.sec<<endl;
}
int main()
{set_time();
show_time();
return 0;
}