题解 2850: 输出亲朋字符串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

2850: 输出亲朋字符串 Python极简代码

摘要:解题思路:第二个ord函数,直接在内部取膜就好,就可以直接取到第一个了注意事项:111参考代码:s = input() s1 = '' for i in range(len(s))……

输出亲朋字符串

摘要:解题思路:注意事项:chr为解码将将ascii值转为字符ord为编码及将字符转为ascii值参考代码:n = str(input())ls=[]for i in range(len(n)-1):   ……

2850: 输出亲朋字符串

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;char s[10000];int main(){    cin.getline(……

2850: 输出亲朋字符串

摘要:参考代码:#include <bits/stdc++.h> using namespace std; char str2[300]; int tong[150]; int main() { ……

为什么不初始化就通不过

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){     int i;     char a[101] = {&#39;\……

c语言代码解决问题

摘要:解题思路:注意事项:注意添加终止符参考代码:#include<stdio.h>#include<string.h>int main(){ char str[101],str_friend[101]; ……

输出亲朋字符串——python

摘要:解题思路:注意事项:参考代码:L = input()for i in range(len(L)-1):    a =chr( ord(L[i])+ord(L[i+1]))    print(a,end……

单个字符拼接输出

摘要:解题思路:注意事项:不要用cin<< 因为根据题目条件,字符串中可能含有空格参考代码://#include <bits/stdc++.h>#define _CRT_SECURE_NO_WARNINGS……

2850: 输出亲朋字符串

摘要:#include<stdio.h> #include<math.h> #include<string.h> # define N 100001 int main() {     char ……