diff options
Diffstat (limited to '1553/CH4/EX4.12')
-rw-r--r-- | 1553/CH4/EX4.12/4Ex12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1553/CH4/EX4.12/4Ex12.sce b/1553/CH4/EX4.12/4Ex12.sce new file mode 100644 index 000000000..8d5614c38 --- /dev/null +++ b/1553/CH4/EX4.12/4Ex12.sce @@ -0,0 +1,14 @@ +//Chapter 4 Ex 12
+
+clc;
+clear;
+close;
+
+x=poly(0,'x');
+for x=0.1:0.1:0.9
+ if (x/(1+1-x))==0.5
+ mprintf("\n The value of x is %.2f",x);
+ break;
+ end
+end
+
|