#include <iostream>
#include "Sales_item.h"
int main(){
Sales_item book
;
std
::cin
>>book
;
std
::cout
<<book
<<std
::endl
;
system("pause");
return 0;
}
遇到问题
缺失Version_test.h文件。
解决方法
添加Version_test.h文件
#ifdef lround
inline long lround(double d
)
{
return (d
>= 0) ? long(d
+ 0.5) : long(d
- 0.5);
}
#endif
转载请注明原文地址:https://tech.qufami.com/read-4645.html