Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
11888 徐一喆 字符指针的理解 C++ Accepted 2 MS 740 KB 160 2021-05-18 12:29:21

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main() { const char *a="I love China!"; int n; scanf("%d",&n); printf("%s\n",a+n); return 0; }