数字串(第27场周赛)
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
int main()
{
string str;
for (int i = 1; i <= 1000; i ++) str += to_string(i);
int T;
scanf("%d", &T);
while (T -- )
{
int n;
scanf("%d", &n);
cout << str[n - 1] << endl;
}
return 0;
}
姐姐巨!QWQ