VC++6.0错误:Cannot open include file: 'cstdio.h': No such file or directory

部分程序://mn.cpp:Definestheentrypointfortheconsoleapplication.//#include<iostream.h>#inc... 部分程序:// mn.cpp : Defines the entry point for the console application.
//

#include <iostream.h>
#include <cstdio.h>
#include <stack>
using namespace std;

typedef const __int64 ll;
typedef struct point{
int x, y;
}point;
stack<point> sp;
const int MAXN = 20;
int g[MAXN][MAXN];
point vp[MAXN+MAXN];

ll path(ll m, ll n){
if(m == 1 || n == 1) return 1;
else return path(m-1, n) + path(m, n-1);
}
ll fact(ll n){
if(n == 0) return 1;
else return n*fact(n-1);
}
ll path1(ll m, ll n){
return fact(m-1+n-1)/(fact(m-1)*fact(n-1));
}
bool get_path(int m, int n){
point p; p.x=n; p.y=m;
sp.push(p);
if(n==1 && m==1) return true;
bool suc = false;
if(m>1 && g[m-1][n])
suc = get_path(m-1, n);
if(!suc && n>1 && g[m][n-1])
suc = get_path(m, n-1);
if(!suc) sp.pop();
return suc;
}
展开
 我来答
小呆瓜
2017-05-01 · 知道合伙人金融证券行家
小呆瓜
知道合伙人金融证券行家
采纳数:2850 获赞数:12626
从事C++行业多年

向TA提问 私信TA
展开全部
不能打开头文件,包含的头文件不对或者错误。
zxy03123
2017-04-20 · TA获得超过576个赞
知道小有建树答主
回答量:506
采纳率:71%
帮助的人:243万
展开全部
是stdio.h不是csdio.h
更多追问追答
追问
改过来了,但是还不对,又会出现这个错误'operator <<' is ambiguous
追答
用<<就不要用stdioh了,注释掉。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式