首頁  >  文章  >  後端開發  >  將以下內容翻譯為中文:在C程式中列印1/n的前k位小數,其中n為正整數

將以下內容翻譯為中文:在C程式中列印1/n的前k位小數,其中n為正整數

PHPz
PHPz轉載
2023-08-28 19:29:031291瀏覽

將以下內容翻譯為中文:在C程式中列印1/n的前k位小數,其中n為正整數

輸入數字 N,這樣 1/N 將會傳回以十進位指定的形式產生的輸出,直到達到限制。

使用浮點數很容易,但挑戰在於不使用它們。

輸入− n=5 k=5

輸出− 20000

這表示如果n=5 且k = 5 除以1/5 後的輸出應顯示至小數點後5 位。

演算法

Start
Step 1 -> Declare int variable n to 9 and k to 7 and remain to 1 and i
Step 2-> Loop for i to 0 and i<k and i++
   Print ((10*remain)/n)
   Remain = (10*remain)%n
Step 3-> end Loop For
Stop

Example

的中文翻譯為:

範例

#include<stdio.h>
int main() {
   int n = 9, k = 7, remain=1,i ; // taking n for 1/n and k for decimal values
   printf("first %d digits of %d are : ",k,n);
   for(i=0;i<k;i++) {
      printf("%d",((10 * remain) / n));
      remain = (10*remain) % n;
   }
   return 0;
}

輸出

如果我們執行上面的程序,它將產生以下輸出。

first 7 digits of 9 are : 1111111

以上是將以下內容翻譯為中文:在C程式中列印1/n的前k位小數,其中n為正整數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除