bec666 2019-09-17 14:21 采纳率: 88%
浏览 916
已采纳

为什么#include "iostream" #include "string" #include "algorithm"都不加.h而加上就会出错呢?

#include "iostream"
#include "string"
#include "algorithm"
using namespace std;
bool IsSubstring (string s,string t)
{
    char *it;
    int i;
    int x=s.length();
    it=t.begin();
    for(i=0;i<x;i++)
    {
        it=(find(it,t.end(),s[i]));
        if(it==t.end())
            return false;
    }
    return true;
}
int main()
{
    string s,t;
    while(cin>>s>>t)
    {
        if(IsSubstring(s,t))
            cout<<"yes"<<endl;
        else
            cout<<"no"<<endl;
    }
    return 0;
}
  • 写回答

5条回答 默认 最新

  • qtchen_1988 2019-09-18 02:38
    关注

    简单来说iostream是c++头文件,iostream.h是c头文件。有些编译器不支持iostream.h,你的编译器属于这种

    https://blog.csdn.net/LYKXHTP/article/details/88359043

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部