1093字符逆序(一个while和for循环) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[105]; char c; int i=0; while(sc…… 题解列表 2024年05月29日 0 点赞 0 评论 160 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:用gets()来接收字符串参考代码:#include <stdio.h>#include<string.h> int main(){ int i,j,len; char str[…… 题解列表 2018年05月07日 0 点赞 0 评论 421 浏览 评分:0.0
1093: 字符逆序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo…… 题解列表 2022年05月13日 0 点赞 0 评论 151 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int i,z; gest(a…… 题解列表 2019年02月17日 2 点赞 1 评论 190 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:参考代码:#include <stdio.h> int main() { char str[101]; int i; gets(str); for(i …… 题解列表 2017年10月10日 1 点赞 0 评论 860 浏览 评分:0.0
字符逆序-题解(C语言代码) 摘要:```cpp #include #include using namespace std; int main(void) { string str; getline(cin, str…… 题解列表 2020年01月25日 0 点赞 0 评论 417 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:解题思路:就是字符串函数strlen的应用注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; int leng…… 题解列表 2017年10月18日 0 点赞 0 评论 722 浏览 评分:0.0
字符逆序-题解(Java代码) 摘要:解题思路:借助API解决注意事项:无参考代码:import java.util.Scanner;public class Main{ public static void main(String…… 题解列表 2020年10月08日 0 点赞 0 评论 186 浏览 评分:0.0
题解 1093: 字符逆序 使用指针解决 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[100]={0}; gets(str); …… 题解列表 2021年09月10日 0 点赞 0 评论 117 浏览 评分:0.0
字符逆序-题解(C语言代码) 摘要:# MarkDown编辑器基本使用说明 **如果这是您第一次使用MarkDown编辑器,建议先阅读这篇文章了解一下Markdown的基本使用方法。** ## 实时预览、全屏显示 ![…… 题解列表 2020年02月21日 0 点赞 0 评论 321 浏览 评分:0.0