首页
编程
java
php
前端
首页
编程
java
php
前端
一个刚接触C语言的人的困难
int n,i=0;
scanf("%d",&n);
while(n>0)
{
printf("%d",n%10);
n=n/10;
i++;
}
printf("\n%d",i);
点击展开全文