If you Google MathWorld Cosine Law, you can find the equations that relate angles and sides in a triangle.
Next you have to translate that into notation that is acceptable to Mathematica. Mathematica uses radians instead of degrees, but you can write 70 Degree and Mathematica will understand that. Mathematica is also case sensitive and some upper case names, like C and N, have been defined as internal functions. Use one of those as a variable name and you will find grief. So for those angles A, B and C I use names aA, aB and aC. Parts of Mathematica often have problems with decimal numbers and using exact fractions can sometimes avoid those. Then you can later translate back to decimals to inspect your result. Many new users find the function Solve and assume that is the answer to all their problems, but for more complicated problems the Reduce function can be more powerful and get a correct answer. And watch out for = versus == versus :=, those are all very different and get new users into all kinds of problems. Watch out for bc, which Mathematica thinks is a variable with a two letter name, while b c or b*c are two variables multiplied together. Remember it is always Cos[angle] and not Cos(angle) or cos(AnGle) or cos angle. Hopefully this is enough background to get you oriented and try to keep you out of trouble.
Let's give Reduce the information you have provided and those three equations from the Cosine Law, ask it to find what the two unknown sides are and finally use the N function to turn the result back to decimal, and for this problem that simplifies the answer at the same time.
In[1]:= N[Reduce[{aC == 90 Degree, aB == 70 Degree, aA == 20 Degree, a == 3/4,
a^2 == b^2 + c^2 - 2 b c Cos[aA],
b^2 == a^2 + c^2 - 2 a c Cos[aB],
c^2 == a^2 + b^2 - 2 a b Cos[aC]}, {b, c}]]
Out[1]= a == 0.75 && aA == 0.349066 && aB == 1.22173 && aC == 1.5708 && b == 2.06061 && c == 2.19285
For some reason that gives back some things you already knew, a==0.75 and it tells you your three angles in radians. If you get a number q that is an angle in radians and you want to know what that is in degrees then you can calculate q/Degree. But it finally tells you what you asked for, the lengths of your two unknown sides b and c. If you choose the correct one of those sides then you should be able to calculate the diameter that you desire.
Study this. Test this on simpler problems where you know what the answer should be and see if it finds the correct answer. Try giving it sides and see if it can find angles. You have to be a little careful with angles because the Cosine Law gives the same answer for 90 degrees that it does for 90+360 or 90+7*360 and you may have to include something like 0<=aA<360 Degree to let Reduce know that you are assuming any angle has to be between 0 and 360 degrees.