• 8 八进制


    #include <iostream>
    using namespace std;
    void f(int x)
    {
        if(x<8) cout<<x;
        else {  cout<<x%8 ;  f(x/8); }
    }
    int main(int argc, char *argv[])
    {
         int x;
         cin>>x;
         f(x);
        
        return 0;
    }
    View Code

    #include <iostream>
    using namespace std;
    void f(int x)
    {
     if(x<8) cout<<x;
     else {  cout<<x%8 ;  f(x/8); }
    }
    int main(int argc, char *argv[])
    {
      int x;
      cin>>x;
      f(x);
     
     return 0;
    }

    *************************************************************************************************************************

    #include <stdio.h>
    void f(int n)
    {
      int i  ;
      if(n>0) 
      { 
       f(n/8) ;
       printf("%d",n%8) ;    
      }    
    }
    
    
    
    int main (  )
    {
    f(100);    
    }
    View Code

    #include <stdio.h>
    void f(int n)
    {
    int i ;
    if(n>0)
    {
    f(n/8) ;
    printf("%d",n%8) ;
    }
    }

    int main ( )
    {
    f(100);
    }

    ****************************************************************************************************************************

    #include <iostream>
    using namespace std;
    void f(int x)
    {
        if(x>0)  {  f(x/8);  cout<<x%8  ;  } ;
    
    }
    int main(int argc, char *argv[])
    {
         int x;
         cin>>x;
         f(x);
        
        return 0;
    }
    View Code
    View Code

    #include <iostream>

    using namespace std;

    void f(int x)

    {     

       if(x>0) 

    {             f(x/8);                    cout<<x%8  ;          }

    }

    int main(int argc, char *argv[])

    {  

    int x;  

    cin>>x;  

        f(x);  

     return 0;

    }

  • 相关阅读:
    css
    ubuntu 解压zip 文件乱码
    常用 Git 命令清单
    phpstorm git配置
    github ssh秘钥配置
    ubuntu 安装phpunit
    ubuntu 安装php xdebug
    nginx压缩,缓存
    mysql中max_allowed_packet参数的配置方法(避免大数据写入或者更新失败)
    putty登录显示IP
  • 原文地址:https://www.cnblogs.com/2014acm/p/3874362.html
Copyright © 2020-2023  润新知