[求助]C++设计题
一个简陋的数据库系统设计(可参考FoxBase),功能如下。(1)提供一个命令解释器,用于识别部分数据库命令,如:
Create <表>
Modify Structure <表>
Use <表>
Close <表>
List
(2)针对上述命令,编写对应的类实现。
2006-03-03 09:38

2006-03-03 17:41

2006-03-03 18:41
2006-03-03 19:05
谁能帮我编个程序啊
7000000到8000000的全部数字显示
2006-03-03 19:14
程序代码:
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i = 7000000; i<= 8000000; i++)
cout<<i<<\" \";
system(\"pause\");
return 0;
}

2006-03-03 19:35
2006-03-03 19:37
2006-03-03 19:38
在问一下 在什么地方编辑啊
我下载了好几个编辑起都不能用
你能告诉我用什么编辑吗
2006-03-03 19:42
2006-03-03 19:49