|
void loadPoint()
{
double x,y,z;
ifstream rs("*.txt");
do
{
rs>>x>>y>>z;
acutPrintf("\n%f %f %f",x,y,z);
}
while(!rs.eof());
rs.close();
}
文本内容
132.41 94 96.67
37.96 259.92 43.59
307.72 117.57 42.28
339.81 49.55 62.51
302.26 191.13 10.34
153.03 200.69 73.65
141.64 151.64 39.03
336.59 137.78 1.86
317.77 76.44 41.69
211.68 68.18 22.33
216.63 113.23 54.7
143.78 243.63 28.61
编译通过,调试时候出现如下错误
cannot find a dll or other file that it needs.
AcRxDynamicLinker failed to load '*.arx'
Unable to load cs.arx file.
求高手解决问题? |
|