diff options
Diffstat (limited to '662/CH4/EX4.7/ex4_7.sce')
-rwxr-xr-x | 662/CH4/EX4.7/ex4_7.sce | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/662/CH4/EX4.7/ex4_7.sce b/662/CH4/EX4.7/ex4_7.sce new file mode 100755 index 000000000..2c4b4d0ae --- /dev/null +++ b/662/CH4/EX4.7/ex4_7.sce @@ -0,0 +1,5 @@ + //Example 4.7
+clc
+printf("Enter alphabets:")
+[n,line] = mscanf(" %[ A-Z]"); //[A-Z] =[ABCDEFGHIJKLMNOPQRSTUVWXYZ]
+disp(line, "line is:");
|