当前位置:编程学习 > C/C++ >>

poj2407-Relatives

欧拉函数


[cpp] 
#include<iostream>  
#include<cstdio>  
#include<algorithm>  
#include<cstring>  
 
using namespace std ; 
#define INT __int64  
 
int enlerfun( INT n ) 

    int tempnum = n ; 
    for( int i = 2 ; i <= n ; ++i  ) 
    { 
        if( n % i == 0 ) 
        { 
            tempnum -= tempnum / i ; 
            while( n % i == 0) 
                n /= i ; 
        } 
    } 
    return tempnum ; 

 
int main() 

    INT n ; 
    INT count ; 
    while( cin >> n && n ) 
    { 
        count = 0 ; 
        count = enlerfun( n ) ; 
        cout << count << endl ; 
    } 
    return 0 ; 

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>

using namespace std ;
#define INT __int64

int enlerfun( INT n )
{
 int tempnum = n ;
 for( int i = 2 ; i <= n ; ++i  )
 {
  if( n % i == 0 )
  {
   tempnum -= tempnum / i ;
   while( n % i == 0)
    n /= i ;
  }
 }
 return tempnum ;
}

int main()
{
 INT n ;
 INT count ;
 while( cin >> n && n )
 {
  count = 0 ;
  count = enlerfun( n ) ;
  cout << count << endl ;
 }
 return 0 ;
}

 

补充:软件开发 , C++ ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,