编写题解 2850: 输出亲朋字符串 摘要:解题思路:设计两个移动指针count1,count2注意事项:参考代码:str=input() ls=[] #初始化空列表 count1=0 #设计两个相邻指针并初始化 count2=1 wh…… 题解列表 2022年10月28日 0 点赞 1 评论 448 浏览 评分:9.9
输出亲朋字符串(c++) 摘要:```cpp #include using namespace std; int main(){ string s; getline(cin,s);//此函数可读取整行,包括…… 题解列表 2022年11月06日 0 点赞 2 评论 504 浏览 评分:9.9
strlen函数在visual stdio2022里是算上\n的在他这编译器上则不算害我搞了好久 摘要:解题思路:注意事项:参考代码:在这里的编译器#include<stdio.h>#include<string.h>void main(){ char a[101]={0}; char d[…… 题解列表 2022年11月11日 0 点赞 2 评论 421 浏览 评分:0.0
2850: 输出亲朋字符串 摘要:```cpp #include using namespace std; int main() { string s; getline(cin,s); char …… 题解列表 2023年01月10日 0 点赞 0 评论 216 浏览 评分:9.9
ASCII值赋值之输出亲朋字符串 摘要:```c #include #include int main() { char a[101], b[101]; //因为字符串长度最大为100,101是因为字符串最后一位是\0 ge…… 题解列表 2023年01月21日 0 点赞 0 评论 481 浏览 评分:9.9
输出亲朋字符串(简短) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s[100]; gets(s); int …… 题解列表 2023年02月07日 0 点赞 0 评论 161 浏览 评分:0.0
2850: 输出亲朋字符串 摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() { char …… 题解列表 2023年03月05日 0 点赞 0 评论 103 浏览 评分:0.0
单个字符拼接输出 摘要:解题思路:注意事项:不要用cin<< 因为根据题目条件,字符串中可能含有空格参考代码://#include <bits/stdc++.h>#define _CRT_SECURE_NO_WARNINGS…… 题解列表 2023年03月10日 0 点赞 0 评论 69 浏览 评分:0.0
输出亲朋字符串——python 摘要:解题思路:注意事项:参考代码:L = input()for i in range(len(L)-1): a =chr( ord(L[i])+ord(L[i+1])) print(a,end…… 题解列表 2023年04月02日 0 点赞 0 评论 118 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:注意添加终止符参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101],str_friend[101]; …… 题解列表 2023年06月01日 0 点赞 0 评论 90 浏览 评分:0.0