इनपुट नंबर एन ऐसा है कि 1/एन सीमा तक निर्दिष्ट दशमलव के रूप में उत्पन्न आउटपुट को वापस कर देगा।
फ़्लोटिंग पॉइंट नंबरों के साथ यह आसान है लेकिन चुनौती उनका उपयोग किए बिना है।
इनपुट - 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