1160倒序数

题目链接:http://ybt.ssoier.cn:8088/problem_show.php?pid=1160 1 #include<iostream> 2 using namespace std; 3 int f(int x) 4 { 5 if(x%10)cout<<x%10; 6 return f(x/10); 7 } 8 int main() 9 { 10
相关文章
相关标签/搜索