千梦


私信TA

用户名:dxy0325

访问量:1816

签 名:

兴趣是最好的老师

等  级
排  名 8873
经  验 1197
参赛次数 0
文章发表 18
年  龄 18
在职情况 学生
学  校 BSU
专  业 数据科学与大数据技术

  自我简介:

此文章用来保存自己的初始代码

参考代码:

这是简单法,待学习数组之后会重新进行编辑

#include<stdio.h>
#include<math.h>
int main()
{
	int num;
	scanf("%d",&num);
	int size=0;
	int temp=num;//增添临时变量,以免不小心破坏num的值
	while(temp){//(temp)的意思实际就是当temp不为0
	    size++;
	    temp/=10;
	}
	printf("%d\n",size);
	for(int i=size-1;i>=0;i--){
	    temp=num/pow(10,i);//pow函数来自于math库,在头文件中
	    printf("%d ",temp%10);
	}
	printf("\n");
	for(int i=0;i<size;i++){
	    temp=num/pow(10,i);
	    printf("%d",temp%10);
	}
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »