C语言中,输入一个3位整数,要求输出它的百位数、十位数和个位数。

C语言中,输入一个3位整数,要求输出它的百位数、十位数和个位数。输入一个3位整数,要求输出它的百位数、十位数和个位数。

宝慕林4294392
浏览 6949回答 2
2回答

潇湘沐

#include <stdio.h>#include <stdlib.h>int main(void){&nbsp; &nbsp; int num;&nbsp; &nbsp; printf("请输入一个三位整数:");&nbsp; &nbsp; scanf("%d",&num);&nbsp; &nbsp; printf("%d的百位是%d,十位是%d"&nbsp; &nbsp; "个位是%d\n",num,abs(num)/100,abs(num)/10%10,abs(num)%10);&nbsp; &nbsp; return 0;}
打开App,查看更多内容
随时随地看视频慕课网APP