其他分享
首页 > 其他分享> > 1316:【例4.6】数的计数(Noip2001)

1316:【例4.6】数的计数(Noip2001)

作者:互联网

数的计数

 1 #include<iostream>
 2 using namespace std;
 3 
 4 int ans;
 5 void cnt(int ori){
 6     ans++;
 7     for(int i=1;i<=ori/2;i++)
 8         cnt(i);
 9 }
10 int main(){
11     int n;
12     cin>>n;
13     cnt(n);
14     cout<<ans;
15     return 0;
16 }

 

标签:std,1316,cnt,4.6,Noip2001,int,计数,ans
来源: https://www.cnblogs.com/sxrekord/p/count_of_numbers.html