
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Write a C program to reduce any fraction to least terms using while loop
Reducing the fraction to the lowest terms means that there is no number, except 1, that can be divided evenly into both the numerator and the denominator.
For example, 24/4 is a fraction, the lowest term for this fraction is 6, or 12/16 is a fraction the lowest term is 3/4.
Now let’s write a c program to reduce the fraction into their lowest terms.
Example 1
#include<stdio.h> int main(){ int x,y,mod,numerat,denomi,lessnumert,lessdenomi; printf("enter the fraction by using / operator:"); scanf("%d/%d", &x,&y); numerat=x; denomi=y; switch(y){ case 0:printf("no zero's in denominator\n"); break; } while(mod!=0){ mod= x % y; x=y; y=mod; } lessnumert= numerat/x; lessdenomi=denomi/x; printf("lowest representation of fraction:%d/%d\n",lessnumert,lessdenomi); return 0; }
Output
enter the fraction by using / operator:12/24 lowest representation of fraction:1/2
Example
//reduce the Fraction #include <stdio.h> int main() { int num1, num2, GCD; printf("Enter the value for num1 /num2:"); scanf("%d/%d", &num1, &num2); if (num1 < num2){ GCD = num1; } else { GCD = num2; } if (num1 == 0 || num2 == 0){ printf("simplified fraction is %s\n", num1?"Infinity":"0"); } while (GCD > 1) { if (num1 % GCD == 0 && num2 % GCD == 0) break; GCD--; } printf("Final fraction %d/%d\n", num1 / GCD, num2 / GCD); return 0; }
Output
Enter the value for num1 /num2:28/32 Final fraction 7/8
- Related Questions & Answers
- Write a C program to calculate the average word length of a sentence using while loop
- Reduce the fraction to its lowest form in C++
- C program to find palindrome number by using while loop
- How to write a while loop in a JSP page?
- C program to print number series without using any loop
- C program to convert decimal fraction to binary fraction
- Write a C program to print ‘ABCD’ repeatedly without using loop, recursion and any control structure
- C program to write all digits into words using for loop
- do…while loop vs. while loop in C/C++
- Java Program to print Number series without using any loop
- Print a pattern without using any loop in C++
- How to convert a Python for loop to while loop?
- How to use C# do while loop?
- Java program to calculate the factorial of a given number using while loop
- How can I write in order with for loop or while loop?
Advertisements