Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
13174 | huyanfeng | digit函数 | C++ | 通过 | 0 MS | 252 KB | 265 | 2023-03-31 11:00:48 |
#include<bits/stdc++.h> using namespace std; int cnt = 0; void digit(int n, int k) { int yu = n % 10; cnt++; if(cnt == k) { cout << yu; return; } digit(n / 10, k); } int main() { int n, k; cin >> n >> k; digit(n, k); return 0; }