Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

不能递归么?

Posted by dynamic_study at 2009-07-27 21:02:20 on Problem 2509
#include<iostream>
using namespace std;
int slove(int n,int k)
{
	if(n<k)
		return n;
	else
		return n+slove(n/k,k);
		

}
int main()
{
	int n,k;
	while(cin>>n>>k)
	{
     	cout<<slove(n,k)<<endl;
	}
	return 0;

}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator