Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
12065 蒋瀚辉 字符指针的理解 C++ Accepted 2 MS 724 KB 167 2021-05-19 14:47:03

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; string a="I love China!"; int n; int main() { cin >> n; for(int i=n;i<=12;i++) cout << a[i]; return 0; }