blob: ddb9cd224b676a3a4e1c642a3526d4dc3c86d99e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clc
//
//
//
//Variable declaration
theta1=13 //rotation of plane
l1=2 //length
l2=3 //Length
s=6.5 //Specific rotation
//Calculations
theta=s*l2*(1/3)
//Result
printf("\n The Concentration of sugar solution is %0.3f degree",theta)
|