学习C语言——分解任意三位数,并将其百位、十位、个位输出
作者:互联网
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
int main()
{
printf("请输入三位数\n");
int x, a, b, c;//定义变量
scanf("%d",&x);//输出未知数x
a=x/100;
b=(x%100)/10;
c=(x%10)%10;
printf("%d,%d,%d",a,b,c);
return 0;
}
标签:10,int,C语言,三位数,百位,printf,100,x% 来源: https://blog.csdn.net/weixin_61153957/article/details/120327299