+ -
当前位置:首页 → 问答吧 → 请问 怎么设置 个人文件夹的读取权限

请问 怎么设置 个人文件夹的读取权限

时间:2011-12-21

来源:互联网

引用:
c1.cpp:2:18: 致命错误: iStack.h:没有那个文件或目录

源码如下:
代码:
#include <iostream>
#include <iStack.h>
using namespace std;
int main() {
iStack stack( 32 );
stack.display();
for ( int ix = 1; ix < 51; ++ix )
{
if ( ix%2 == 0 )
stack.push( ix );
if ( ix%5 == 0 )
stack.display();
if ( ix%10 == 0) {
int dummy;
stack.pop( dummy ); stack.pop( dummy );
stack.display();
}
}
}

作者: lanseyiran   发布时间: 2011-12-21