在 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
示例
#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
广告