下列程序的功能是输出任意一个整数的个位数字。

下列程序的功能是输出任意一个整数的个位数字。

#include < stdio.h >

  void main( )

  {float x; ★

   int a;

   x=12345;

   a=x/10; ★

   printf(“%d”,a);

    }

 

 

 

#include “stdio.h”
#include “conio.h”
void main()
{
   int x,a;
   x=12345;
   a=x%10;
   printf(“%d”,a);
   getch();
}

© 版权声明
THE END
喜欢就支持以下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容