answersLogoWhite

0


Best Answer

The GCF is 1.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the greatest common divisor of B and B and C?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the greatest common divisor of 80 and 120?

40 c;


C program to find greatest of three numbers?

# include<stdio.h> main() { int a,b,c; print f("enter the values of a,b,c"); scan f("%d%d%d",&a,&b,&c); if((a>b)&&(a>c)) print f("Greatest value is a =%d",a); else if((b>a)&&(b>c)) print f("Greatest value is b=%d",b); else print f("Greatest value is c=%d",c); }


How do you find the greatest of three numbers using vb script?

dim a,b,c a=cint(inputbox("enter value for a")) b=cint(inputbox("enter value for b")) c=cint(inputbox("enter value for c")) if((a>b)and(a>c)) then msgbox "greatest number is a="&a else if ((b>a)and(b>c)) then msgbox "greatest number is b="&b else msgbox "greatest number is c="&c end if end if


How do you invert the divisor and multiply a fraction?

(a/b) divided by (c/d) =(a/b) x (d/c) <-- notice divisor is inverted (turned upside down) now multiply both numerators and both denominators = (ad)/(bc)


Write algorithm of a largest number and smallest number among three numbers?

public class FindLeastAndGreatest { public static void main(String[] args) { // number can't be equal with each other int a = 7; int b = 7; int c = 6; System.out.println(least(a,b,c)); System.out.println(greatest(a,b,c)); } public static int least(int a, int b, int c) { int least = 0; if(a < b && a < c) { least = a; } else if(b < a && b < c) { least = b; } else { least = c;} return least; } public static int greatest(int a, int b, int c) { int greatest = 0; if(a > b && a > c) { greatest = a; } else if(b > a && b > c) { greatest = b; } else { greatest = c;} return greatest; } }

Related questions

How do you prove that if the greatest common factor of A and B equals 1 and C does not equal 0 then the greatest common factor of AC and BC divides C?

If the greatest common factor/divisor of A and B is 1 then they are coprime - they do not share any prime factors. Multiplying both through by C means, obviously, that each number now divides by C. In fact, C is their greatest common divisor, since AC and BC do not have further common factors after C is taken out. Hence the GCF of AC and BC is not merely a factor of C - it is C. (The question makes sense only if A, B and C are integers.)


What is the greatest common divisor of 80 and 120?

40 c;


What is the greatest common factor C and B?

The greatest factors of A, B, and C, respectively, are the absolute values of A, B, and C. The greatest common factor of A, B, and C is 1.


Which is not a divisor of 54?

A,b,c


What is the greatest common factor of A B and C?

The GCF is 1.


When you divide the numbers are called?

A/B = C A is the dividend B is the divisor C is the quotient


What is the least common multiple of decimals and fractions in C?

To calculate the least common multiple (lcm) of decimals (integers) and fractions you first need to calculate the greatest common divisor (gcd) of two integers: int gcd (int a, int b) { int c; while (a != 0) { c = a; a = b % a; b = c; } return b; } With this function in place, we can calculate the lcm of two integers: int lcm (int a, int b) { return a / gcd (a, b) * b; } And with this function in place we can calculate the lcm of two fractions (a/b and c/d): int lcm_fraction (int a, int b, int c, int d) { return lcm (a, c) / gcd (b, d); }


What is the highest common multiple of B and C?

The greatest common multiple of any set of integers is infinite.


What is the greatest common factor of the products ab ac and bc if b is a factor of c?

The answer depends on whether or not a is a factor of c.


What are the greatest common factors of 11 and 50?

the only common factor is 1 b/c 11 is a prime number.


C program to find greatest of three numbers?

# include<stdio.h> main() { int a,b,c; print f("enter the values of a,b,c"); scan f("%d%d%d",&a,&b,&c); if((a>b)&&(a>c)) print f("Greatest value is a =%d",a); else if((b>a)&&(b>c)) print f("Greatest value is b=%d",b); else print f("Greatest value is c=%d",c); }


How do you find the greatest of three numbers using vb script?

dim a,b,c a=cint(inputbox("enter value for a")) b=cint(inputbox("enter value for b")) c=cint(inputbox("enter value for c")) if((a>b)and(a>c)) then msgbox "greatest number is a="&a else if ((b>a)and(b>c)) then msgbox "greatest number is b="&b else msgbox "greatest number is c="&c end if end if