answersLogoWhite

0

121 S ON A C C B?

Updated: 12/11/2022
User Avatar

Wiki User

12y ago

Best Answer

121 spaces on a Chinese checkers board

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: 121 S ON A C C B?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write c plus plus program that compare 3 integer numbers and print out the smallest one among them?

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { int a,b,c,d,g=0,s=0; a=Integer.parseInt(jTextField1.getText()); b=Integer.parseInt(jTextField2.getText()); c=Integer.parseInt(jTextField3.getText()); d=Integer.parseInt(jTextField3.getText()); if(a>b){ if(b>c){g=a;s=c;} else{g=a;s=b;} } else if(b>c){ if(c>a){g=b;s=a;} else{g=b;s=c;} } else if(c>a){ if(b>a){g=c;s=a;} else {g=c;s=c;} } switch(d){ case 1:JOptionPane.showMessageDialog(this, "the greates no. is"+g); break; case 2:JOptionPane.showMessageDialog(this, "the smallest no. is"+s); break; default:JoptionPane.showMessageDialog(this," please enter the choice"+"correctly 1 for greatest and 2 for smallest"); }


D Write a program that reads 3 sides of a triangle and calculates the perimeter of the triangle and the area using the formulae?

//Written in C++. ALFRED OMONDI ORIMBO (orimbo@gmail.com)# include# includeusing namespace std;void main(){double s,a,b,c,area;couta;coutb;coutc;s=(a+b+c)/2;area = sqrt(s*(s-a)*(s-b)*(s-c));cout


If a plus a equals b and b plus c equals a and a-c equals b what is c?

a= (+a) or a= (-) b= 2a b= 2a c= (-a) c= (+a)


1 121 12321 1234321 program?

1^2 = 111^2 = 121111^2 = 123211111^2 = 123432111111^2 = 123454321#include#include#includevoid main(){clrscr(); int n;//soullessgodcoutn;int a=1,b,s=1;for(;a=1;b--){cout


How to draw the logic circuit for full adder using half adder?

asdfghjkl;' s-sum and c'-carry see for half adder s=a(xor)b and c'=ab for full adder s=a(xor)b(xor)c and c=ab+bc+ac or ab+c(a(xor)b) we can convert two half adder to full adder with help of and or gate. . . ! we got two half adder * for first half adder input is a and b therefore. . .s=a(xor)b and c'=ab * for second half adder input is a(xor)b and c therefore. . .s=a(xor)b(xor)c and c' is (a(xor)b)c note: now connect the c' of first half adder and second half adder to 'or' gate resulting is ab+c(a(xor)b)

Related questions

What is the area formula for an triangle?

It is sqrt{s*(s-a)*(s-b)*(s-c)} where the lengths of the three sides are a, b and c units and s = (a+b+c)/2.


What is the area of a triangle when given are the length and the sides?

Suppose the sides are a, b and c units. Calculate s= (a+b+c)/2 Then Area = sqrt[s*(s-a)*(s-b)*(s-c)] square units


What is the area of oblique triangles?

Use the Hero's formula: Let s = (a + b + c)/2. Then the area of the triangle equals√[s(s - a)(s - b)(s - c)], where a, b, and c denote the sides of the triangle.


How do you find the area of an oblique triangle which 3 sides are given?

Let the sides be a, b, c Area = sq rt [s(s-a)(s-b)(s-c)] where s= 1/2 (a+b+c)


What is the area of a triangle 17m by 17m by 30m?

120 sq metres. To see how you get this answer, read on: If the sides are a, b and c, then calculate s = 0.5*(a+b+c) Then the area is sqrt[s*(s-a)*(s-b)*(s-c)]


What is the formula for the surface area and volume of a triangular prism?

The answer depends on the information that you do have. Suppose you know all the edge lengths: the three sides of the triangle are a, b and c and the length of the prism is d. Let s = (a + b + c)/2 Then the area of the triangular cross section is sqrt[s*(s-a)*(s-b)*(s-c)] square units. So, surface area = 2*sqrt[s*(s-a)*(s-b)*(s-c)] + d*(a+b+c) square units. Volume = sqrt[s*(s-a)*(s-b)*(s-c)]*d cubic units.


What is area of triangle circle polygon?

The information depends on what information is available. For example, for a triangle in which all three sides are known (a, b and c) then calculate s = (a+b+c)/2 And the area = sqrt[s*(s-a)*(s-b)*(s-c)] If a, b and the angle between then, C, is known then area = 0.5*a*b*sin(C). There are other formulae for other circumstances.


What is heron's formula?

If A is the area of a triangle with side length a, b and c and s is (a+b+c)/2 ( known as the semiperimeter of the triangle) Then, Heron's formula tells us that A=square root of [s(s-a)(s-b)(s-c)].


What is the formula for the area of base in a triangular prism?

One possible form is sqrt{s*(s-a)*(s-b)*(s-c)} square units where the lengths of the three sides of the triangle are a, b and c units and s = (a+b+c)/2.


What is the formula for area of base of a triangular prism?

One possible form is sqrt{s*(s-a)*(s-b)*(s-c)} square units where the lengths of the three sides of the triangle are a, b and c units and s = (a+b+c)/2.


How do you find area of a triangle given its 3 sides in c program?

#include<stdio.h> #include<math.h> main() { float A,a,b,c,s; printf("entr the value of a,b and c"); scanf("%f %f %f",&a,&b,&c); A=sqrt(s*s-a*s-b*s-c) printf("area of the triangle %f\n"A); getch(); }


How do you calculate the area of a surface of which all four sides are unequal?

Let A,B,C,D Four different sides with different lengths. Apply the following formula. A = Sqrt ( ( s-a) ( s-b) (s-c) (s-c) ) Where S = ( a+b+c+d) / 2.