C语言 将任意正整数倒序输出

tech2024-11-10  10

C语言 将任意正整数倒序输出

//********************************************************* //File name : 0401.c //Author : 甜不辣 //Date : 10.31 //Student ID :2019217889 //********************************************************* #include <stdio.h> #include <math.h> int main(void) { long int i, a, b; printf("请输入一个10亿以内的整数:\n"); scanf("%ld", &a); for( i = 0; a; a /= 10 ) { i = i * 10 + a % 10; } printf("%ld", i); system("pause"); return 0; }
最新回复(0)