blob: d4e3c7ea04199ce19624625275e613dd0270b99c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
theta1=35 //rotation of plane
s=100 //Specific rotation
c=0.1 //Concentration
//Calculations
l=((theta1)/(s*c))*10
//Result
printf("\n The Length will be %i cm",l)
|