辛勤秋天

文章
5
资源
0
加入时间
2年10月17天

lin的题目

一.反转字符串/*将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。 如:输入“I am a student”,输出“tneduts a ma I”。输入参数: inputString:输入的字符串返回值: 输出转换好的逆序字符串*/#include <iostream>#include <algorithm>#include <string>#include <vector