Programma per trovare HCF in C
Un HCF o Highest Common Factor, è il più grande fattore comune di due o più valori.
For example i fattori 12 e 16 sono -
12 → 1, 2, 3, 4, 6, 12
16 → 1, 2, 4, 8, 16
I fattori comuni sono 1, 2, 4 e il fattore comune più alto è 4.
Algoritmo
L'algoritmo di questo programma può essere derivato come:
START
Step 1 → Define two variables - A, B
Step 2 → Set loop from 1 to max of A, B
Step 3 → Check if both are completely divided by same loop number, if yes, store it
Step 4 → Display the stored number is HCF
STOP
Pseudocodice
procedure even_odd()
Define two variables a and b
FOR i = 1 TO MAX(a, b) DO
IF a % i is 0 AND b % i is 0 THEN
HCF = i
ENDIF
ENDFOR
DISPLAY HCF
end procedure
Implementazione
L'implementazione di questo algoritmo è fornita di seguito:
#include<stdio.h>
int main() {
int a, b, i, hcf;
a = 12;
b = 16;
for(i = 1; i <= a || i <= b; i++) {
if( a%i == 0 && b%i == 0 )
hcf = i;
}
printf("HCF = %d", hcf);
return 0;
}
Produzione
Il risultato del programma dovrebbe essere:
HCF = 4