Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
96382 冯诚阳 C语言7.21 C++ Accepted 1 MS 264 KB 197 2024-11-07 18:53:41

Tests(1/1):


Code:

#include<iostream> // cin\cout\endl #include<cstring> using namespace std; int main() { char a[100],b[100]; gets(a); gets(b); strcpy(a,b); printf(a); return 0; }