提交时间:2019-09-19 19:28:56
运行 ID: 406
#include<iostream> int main(){ int n=7980; int temp=0; while(n!=0){ temp=temp*10+n%10; n/=10; } printf("%d",temp); return 0; }