summaryrefslogtreecommitdiff
path: root/462/CH2/EX2.9.c
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /462/CH2/EX2.9.c
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '462/CH2/EX2.9.c')
-rwxr-xr-x462/CH2/EX2.9.c/ex_2_9_c.pdfbin0 -> 35792 bytes
-rwxr-xr-x462/CH2/EX2.9.c/ex_2_9_c.sce20
2 files changed, 20 insertions, 0 deletions
diff --git a/462/CH2/EX2.9.c/ex_2_9_c.pdf b/462/CH2/EX2.9.c/ex_2_9_c.pdf
new file mode 100755
index 000000000..a8454a3cc
--- /dev/null
+++ b/462/CH2/EX2.9.c/ex_2_9_c.pdf
Binary files differ
diff --git a/462/CH2/EX2.9.c/ex_2_9_c.sce b/462/CH2/EX2.9.c/ex_2_9_c.sce
new file mode 100755
index 000000000..ae50fa7da
--- /dev/null
+++ b/462/CH2/EX2.9.c/ex_2_9_c.sce
@@ -0,0 +1,20 @@
+//example 2.9(c)//
+//representation in 1's complement form//
+clc
+//clears the window//
+clear
+//clears all the existing variables//
+x=15
+//x=+15//y=-x//
+xb=dec2bin(15)
+//xb means binary conversion of x to its one's complement form//
+xc=dec2bin(bitcmp(15,5))
+//xc means conversion of y in its one's complement form//
+disp(x)
+printf("=")
+disp(xb)
+//displaying answer in one's complement form//
+disp(-x)
+printf("=")
+disp(xc)
+//answer in one's complement form// \ No newline at end of file