主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
小王桐学
2024年2月23日 21:36
数组逆置 题解:C
P1358
回复 0
|
赞 0
|
浏览 455
#include <stdio.h> #include <string.h> int main() { char s[201]; while(gets(s) != NULL) { char *p = s; while(*p) p++; p--; while(p >= s) printf("%c",*p--); printf("\n"); } return 0; }
DestinyCares+++
2024年2月14日 23:19
数组逆置 题解:
P1358
回复 0
|
赞 0
|
浏览 573
#include<bits/stdc++.h> using namespace std; int main(){ string str; while(cin>>str){ int m=str.length(); for(int i=m-1;i>=0;i--){ &nb...
题目
数组逆置
题解数量
2
发布题解
快速答疑
热门题解
1
数组逆置 题解:
2
数组逆置 题解:C