编写题解 1031: [编程入门]自定义函数之字符串反转(c++) 摘要:解题思路:先定义一个字符串,再反向输出注意事项:参考代码:#include<iostream>using namespace std;int main(){ string n; cin>>…… 题解列表 2022年05月23日 0 点赞 0 评论 387 浏览 评分:9.9
自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>>s; for(int …… 题解列表 2022年05月21日 0 点赞 0 评论 97 浏览 评分:0.0
挺容易理解的程序 摘要:解题思路:先去空格(32) 再逆序 注意事项:字符串s限制80字符以内 可以自行修改参考代码:#include <stdio.h> #include <string.h> void qu32(ch…… 题解列表 2022年05月11日 0 点赞 0 评论 195 浏览 评分:9.9
自定义函数之字符串反转 (c++的string 简单) 摘要:解题思路:就用字符串倒过来输出就可以了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>…… 题解列表 2022年05月09日 0 点赞 0 评论 138 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:因为要倒序这个字符串,所以我们可以把他当做倒序输出注意事项:注意是从s.length()-1开始,到i>=0结束参考代码:#include<bits/stdc++.h> using nam…… 题解列表 2022年05月09日 0 点赞 0 评论 140 浏览 评分:0.0
编写题解 1031: [编程入门]自定义函数之字符串反转(利用切片解决) 摘要:解题思路:注意事项:参考代码:def main(): a = input() print(a[::-1])main()…… 题解列表 2022年05月08日 0 点赞 0 评论 148 浏览 评分:0.0
用数组与for循环解题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define N 100void oppo(char sz[],int m){ int j; for(j=m-1;j>=0;j--)…… 题解列表 2022年05月07日 0 点赞 0 评论 140 浏览 评分:0.0
[编程入门]自定义函数之字符串反转(函数版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int i;char T1(){ char a[100]; gets(a);int n=…… 题解列表 2022年05月06日 0 点赞 0 评论 184 浏览 评分:0.0
自定义函数之字符串反转 摘要:原题链接:[编程入门]自定义函数之字符串反转解题思路:其实跟数字的反转是一样的,倒叙输出就可以了注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#incl…… 题解列表 2022年05月06日 0 点赞 0 评论 111 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ cin>>s; for(int i=…… 题解列表 2022年05月06日 0 点赞 0 评论 97 浏览 评分:0.0