2的次冪表示

  1 #include<stdio.h> 2 3 void Power(int n); 4 5 int main() 6 { 7 int n; 8 9 while(scanf("%d",&n)!=EOF) //讀取正整數未出錯 10 { 11 Power(n); 12 printf("\n"); 13 }
相關文章
相關標籤/搜索