summaryrefslogtreecommitdiff
path: root/876/CH7/EX7.2/Ex7_2t.txt
blob: c82d45860256139afeaa8989e57fcfb4440c5b26 (plain)
1
2
3
4
5
6
7
//caption:convert 17 octal into decimal
//Ex7.2
clc
clear
close
decimal=1*8^1+7*8^0
disp(decimal,'decimal conversion=')