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