diff options
Diffstat (limited to '1553/CH24/EX24.13')
-rw-r--r-- | 1553/CH24/EX24.13/24Ex13.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1553/CH24/EX24.13/24Ex13.sce b/1553/CH24/EX24.13/24Ex13.sce new file mode 100644 index 000000000..35be8c2ea --- /dev/null +++ b/1553/CH24/EX24.13/24Ex13.sce @@ -0,0 +1,17 @@ +//Chapter 24 Ex 13
+
+clc;
+clear;
+close;
+inc=3; dec=4;
+x=poly(0,'x');
+y=(x-7); //from given condition 1
+y=(3*x-12)/4; //from given condition 2
+for x=1:99
+ if (x-7)==((3*x-12)/4) then
+ break;
+ end
+end
+y=x-7;
+area=2*(x+y);
+mprintf("The perimeter of the rectangle is %d cm.",area);
\ No newline at end of file |