blob: 9f5bb91173f2e53e996fb7cf1eebf11bf059c0cf (
plain)
1
2
3
4
5
6
7
8
9
|
//Given that
conv1 = 170.474 //conversion from crans to liters
conv2 = 48.26 //from covido to cm
V1 = 1255 //in crans
//Sample Problem 1-2
printf("**Sample Problem 1-2**\n")
VC = V1 * conv1 * 10^3 / (conv2^3)
printf("The required declaration is %e cubic covidos", VC)
|