用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;}
大佬,请问,是问一次服一次钱吗?
不是
也就是说,我能再原来付费的基础上问一题嘛
编程题你重新开个题问吧
哦哦,那不打扰了,大佬再见
不客气