0
点赞
收藏
分享

微信扫一扫

c 整数长度

343d85639154 2022-06-13 阅读 48
int len(int x){
if(x<10) return 1;
return len(x/10)+1;
}


举报

相关推荐

0 条评论