Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
34315 huyanfeng 输出亲朋字符串 C++ 通过 0 MS 256 KB 326 2023-12-18 19:33:08

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { char a[101], b[101]; cin >> a; //'\0':字符串结束的标志 int len = strlen(a);//计算字符串的长度 for(int i = 0; i < len - 1;i++) { char c = a[i] + a[i + 1]; cout << c; } char c = a[0] + a[len - 1]; cout << c; return 0; }


测评信息: