主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
hellokitty1679
2024年8月17日 23:20
回文串问题 题解:C
P1659
回复 0
|
赞 0
|
浏览 278
#include<stdio.h> #include<string.h> int main(void) { char a[101]; int i=1; while(scanf("%s",a)!=EOF) { int m=0,n=strlen(a)-1; int isP=0; while(m<n) { if(a[m]!=a[n]) { printf("case%d: no\n",i); isP=1; break; } m++; n--; ...
JohnWang
2021年4月17日 19:24
巧用string简单做回文数
P1659
回复 0
|
赞 3
|
浏览 7.0k
#include <iostream> #include <algorithm> using namespace std; int main() { string s, rs; int index = 1; while(cin >> s) { rs = s; reverse(rs.begin(), rs.end()); if(s == rs) cout << "case" << index++ << ": yes" &l...
题目
回文串问题
题解数量
2
发布题解
热门题解
1
巧用string简单做回文数
2
回文串问题 题解:C