#include <iostream> #include <stdio.h> #include <stdlib.h> #include <string> #include "forest.h" #include "creatTree.h" int main() { csNode* T1 = NULL; int i = 99, x, y; char file_name[MAXLEN]; pTree T; while (i != 0) { printf("*按0-销毁森林或树 | 按1-创建森林或树 *\n"); printf("*按2-先序遍历森林 | 按3-后序遍历森林 *\n"); printf("*按4-层次遍历森林 | 按5-求森林的高度 *\n"); printf("*按6-求森林结点总数 | 按7-求森林叶子结点总数 *\n"); printf("*按8-求森林的度 | 按9-先序输出结点值及其层次号 *\n"); printf("*按10-输出广义表表示的树 *\n"); printf("请选择需要执行的项目:"); scanf_s("%d", &i);cout << endl;包含头文件还是包相同的错
时间: 2024-03-21 19:41:04 浏览: 72
#include"iostream.h"
3星 · 编辑精心推荐
这个错误是因为在代码中使用了`cout`,而你只包含了`stdio.h`和`stdlib.h`这两个头文件,但是没有包含`iostream`头文件。因此,编译器无法识别`cout`这个标识符。
你需要在代码中加入以下头文件:
```
#include <iostream>
```
这样就可以使用`cout`了。另外,你需要将`scanf_s("%d", &i);`这行代码中的分号`;`去掉,否则会导致编译错误。
如果你还有其他问题,请随时问我。
阅读全文