summaryrefslogtreecommitdiff
path: root/1427/CH5/EX5.33/5_33.sce
blob: 035ebf360160914b6b8fc63e9a8ec3ca68bcda5a (plain)
1
2
3
4
5
6
7
8
//ques-5.33
//Finding transport number of silver and nitrate ions
clc
x=0.916;
y=1;
t1=x/(x+y);//transport number of silver ions
t2=1-t1;////transport number of nitrate ions
printf("Transport number of silver and nitrate ions are %.3f and %.3f respectively.",t1,t2);