help help蒟蒻求助
查看原帖
help help蒟蒻求助
783658
for_i_in_range65楼主2022/9/25 13:20
#include<bits/stdc++.h>
using namespace std;
int main()
{
	long long n;
	scanf("%lld",&n);
	while(n!=0){
		if(n%10==0){
			goto st;
		}
		printf("%d",n%10);
		st:
		n/=10;
	}
	return 0;
}
2022/9/25 13:20
加载中...