解决codeblocks找不到iostream.h

标签: 

it

分类: c/cpp
用codeblocks的童鞋写c++ 的时候会碰到找不到iostream.h的情况,我也是,后来找到了解决方法。

#include<iostream>
using namespace std;

替换原来使用的
#include<iostream.h>即可解决。 
来自http://blog.sina.com.cn/s/blog_63237e350100snh8.html

猜你喜欢

转载自blog.csdn.net/weixin_39298521/article/details/78189785