zoukankan      html  css  js  c++  java
  • 第三十六次发博不知道有什么标题好

    进制转换.....真的是了这么晚了嗨得像极了一个没有早训的人.....

    #include<stdio.h>
    #include<stdlib.h>
    typedef struct node{
        int data;
        struct node *next;
    }stack;
    
    stack * push(stack*ls,int x)
    {
        stack *p;
        if(ls==NULL)return 0;
        else{
            p=(stack*)malloc(sizeof(stack));
            p->data=x;
            p->next=ls;
            ls=p;
            return ls;
        }    
    }
    
    void pop(stack *ls)
    {
        stack *p;
        if(ls==NULL)
        printf("error!");
        while(p)
        {
            ls=p->next;
            printf("%d",p->data);
            free(p);
            p=ls;
        }
    }
    
    stack *transfer2(int x)
    {
        int i;
        stack *p;
        stack *ls=NULL;
        while(x){
            i=x%2;
            p=(stack*)malloc(sizeof(stack));
            p->data=i;
            p->next=ls;
            ls=p;
            x=x/2;
        }
            return ls;
    }
    
    stack *transfer8(int x)
    {
        int i,j;
        stack *p;
        stack *ls=NULL;
        while(x){
            i=x%8;
            p=(stack*)malloc(sizeof(stack));
            p->data=i;
            p->next=ls;
            ls=p;
            x=x/8;
        }
            return ls;
    }
    
    main()
    {
        int m;
        stack *ls;
        printf("请输入要转化的数:");
        scanf("%d",&m);
        ls=transfer2(m);
        printf("对应的二进制数是:");
        ls=transfer8(m);
        pop(ls);
        
    }
  • 相关阅读:
    [转]王垠的过去和现状
    支持向量机(SVM)基础
    C语言编程心得
    Fortran学习心得
    gdb使用心得
    大道至简第一章读后感
    第一个音符
    Exercise 1.20 最大公约数算法
    Exercise 1.19 Fast Fibonacci
    Exercise 1.16 1.17 1.18
  • 原文地址:https://www.cnblogs.com/shi-yuan/p/10903498.html
Copyright © 2011-2022 走看看