C語言二進制與十進制之間的轉換

二進制與十進制之間的轉換 web #include<stdio.h> void convert(int n) { if(n > 1) { convert(n/2); } printf("%d",n%2); } int main() { int n; scanf("%d",&n); convert(n); return 0; } 下面是二進制到十進制的轉換svg #inc
相關文章
相關標籤/搜索