编写题解 1031: [编程入门]自定义函数之字符串反转
摘要:解题思路:注意事项:参考代码:import java.util.*;public class Main{ public static void main(String[] args){ ……
字符串反转C语言题解
摘要:解题思路:使用字符串函数strlen获得字符串长度注意事项:记得加上预处理命令#include<string.h>参考代码:#include<stdio.h>#include <string.h>in……
多余的string函数
摘要:解题思路:#include<stdio.h>
#include<string.h>
int main(void)
{
char a[100];
gets(a);
i……
极简[编程入门]自定义函数之字符串反转
摘要:解题思路:无注意事项:无参考代码:s = input()print([s::-1]……
自定义函数之字符串反转
摘要:解题思路: 使用getchar( )获取字符; 使用putcahr( )显示字符;注意事项: 输入一个字符串的首地址,可以……
暴力解法--一行代码搞定
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string s; ……
C++:vector容器简单使用方法_练习
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>using namespace std ;void ko( vector<……
编写题解 1031: [编程入门]自定义函数之字符串反转
摘要: #include #include #include #include #include using namespace std;……