码迷,mamicode.com
首页 > 其他好文 > 详细

【查找数字x第k为上的数字】

时间:2017-04-12 09:52:11      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:scan   mat   style   ==   code   pow   std   amp   长度   

#include<stdio.h>
#include<math.h>
// 求x用10进制表示时的数位长度 
int len(int x){
    if(x<10) return 1;
    return len(x/10)+1;
}
    
// 取x的第k位数字
int f(int x, int k){
    if(len(x)-k==0) return x%10;
    return f(x / pow(10, len(x) - k), k);  
}
    
int main()
{
    int x, k;
    printf("请输入数字和查找位置:");
    scanf("%d %d", &x, &k); 
    printf("位置 %d 上的数字为 :%d\n", k, f(x,3));
    return 0;
}

 

【查找数字x第k为上的数字】

标签:scan   mat   style   ==   code   pow   std   amp   长度   

原文地址:http://www.cnblogs.com/libra-yong/p/6683193.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!