summaryrefslogtreecommitdiff
path: root/3769/CH20/EX20.6/Ex20_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH20/EX20.6/Ex20_6.sce')
-rw-r--r--3769/CH20/EX20.6/Ex20_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3769/CH20/EX20.6/Ex20_6.sce b/3769/CH20/EX20.6/Ex20_6.sce
new file mode 100644
index 000000000..ebc0fa138
--- /dev/null
+++ b/3769/CH20/EX20.6/Ex20_6.sce
@@ -0,0 +1,11 @@
+clear
+//Given
+t1=2.5 //second
+r1=0.5
+r2=1
+
+//Calculation
+t2=(t1*r2**2)/r1**2
+
+//Result
+printf("\n exposure time is %0.3f s",t2)