Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116804 蔡胤泽 输出字符 C++ Accepted 1 MS 276 KB 191 2025-04-12 15:12:46

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; char s [100000]; int main() { cin >> s; for(int i = 0; i < strlen(s); i++) cout<< s [i] << ' '; cout << endl; return 0; }