用c语言编程:输入一个四位数,求出它的个位、十位、百位、千位,并输出

1个回答
展开全部
摘要 #include
int main(){
int n = 123456;
int unitPlace = n / 1 % 10;
int tenPlace = n / 10 % 10;
int hundredPlace = n / 100 % 10;
int thousandPlace = n / 1000 % 10;
printf("个位:%d\n十位:%d\n百位:%d\n千位:%d\n", unitPlace, tenPlace, hundredPlace, thousandPlace);
getchar();
return 0;
}
咨询记录 · 回答于2021-06-01
用c语言编程:输入一个四位数,求出它的个位、十位、百位、千位,并输出
#includeint main(){ int n = 123456; int unitPlace = n / 1 % 10; int tenPlace = n / 10 % 10; int hundredPlace = n / 100 % 10; int thousandPlace = n / 1000 % 10; printf("个位:%d\n十位:%d\n百位:%d\n千位:%d\n", unitPlace, tenPlace, hundredPlace, thousandPlace); getchar(); return 0;}
大佬,请问,是问一次服一次钱吗?
不是
也就是说,我能再原来付费的基础上问一题嘛
编程题你重新开个题问吧
哦哦,那不打扰了,大佬再见
不客气
下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消