永发信息网

能够帮我看看我的程序为什么错吗?

答案:1  悬赏:60  手机版
解决时间 2021-07-25 11:46
  • 提问者网友:暗中人
  • 2021-07-24 20:43

#include <iostream>
#include <string>
#include <cctype>
using namespace std;

int main()
{
string a,b,c;

cout <<"enter string: ";
getline( cin, a );

for(int i = 1; i < a.length(); i++)
{
b = a.substr(i,1);
if ( !(ispunct(b.c_str()) || isspace(b.c_str())))
c += b;
}
for ( int i = 1; i <= c.length(); i++)
{
{
if ( c.substr(i,1) != c.substr( c.length() - i))
cout << "NO";
break;
}
if i > c.length()
cout << "YES" << endl;
}
system("pause");
return 0;
}

最佳答案
  • 五星知识达人网友:孤独入客枕
  • 2021-07-24 22:20

首先:你的程序的 i 未定义


其次:ispunct()和isspace()函数未定义;试着加一个头文件#include <ctype.h>

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯