blob: b020ee60c83c737031e524a8f174b7e1e2cdb80b (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Chapter 10, Problem 22
clc
I=2.5e-3 //current in amperes
R=5000 //resistance in ohm
e1=0.4 //error tolerance
e2=0.5 //error tolerance
V=I*R
emax=e1+e2
V1=(emax/100)*V
printf("V = %.1f V\n accuracy = %.2f V\n",V,V1)
|