C语言练习考研复习题
编写一个程序将用户输入的正整数转化为对应的二进制数。#include<stdio.h>#include <stdlib.h>int main(){ int num; printf("请输入一个正整数:
C语言练习考研复习题