summaryrefslogtreecommitdiff
path: root/911/CH2/EX2.1.a/ex_2_1_a.sce
blob: dbb21dd4edee4f000f34db974def2cbc172303f5 (plain)
1
2
3
4
5
6
7
8
9
10
//example 2.1(a)//
clc
//clears the screen//
clear
//clears all existing variables//
a=275.75;
//numbers in decimal form//
b=37.875;
c=a+b;
disp(c,'Addition of given two numbers = ')