华师一附中OI组

标题: 123456789101112***的第n位是几 [打印本页]

作者: admin    时间: 2018-6-3 10:01
标题: 123456789101112***的第n位是几
  1. ///12345678910111213第n位
  2. #include<iostream>
  3. using namespace std;
  4. int n,x,a,b,x1,x2;
  5. int main()
  6. {
  7.     cin>>n;
  8.     if (n<=9) x=n;
  9.     else if (n<=189) ///两位数90个,占180个位子
  10.     {
  11.         n=n-9;///减掉前面9个
  12.         a=(n-1)/2+1; ///第几个两位数 参考苹果装箱
  13.         b=a+9; ///这个两位数是几
  14.         x1=b/10,x2=b%10; ///个位和十位
  15.         if (n%2==1) x=x1;else x=x2;

  16.     }
  17.     else {}
  18.     cout<<x;
  19.     return 0;
  20. }
复制代码





欢迎光临 华师一附中OI组 (http://hsyit.cn/) Powered by Discuz! X3.2