將1個十進制整數通過除8取餘數法轉換爲八進制整數。

#include<stdio.h> #include<math.h> main() { int a,b,c,i=1,s=0; printf(「請輸入一個十進制整數:」); scanf("%d",&a); for (;a!=0;) { b=a%8;a=a/8; c=bi;s=s+c;i=i10; } printf(「該整數的八進制爲:%d\n」, s); } PS:下面是程序執行結果,上面是文字版,
相關文章
相關標籤/搜索