blob: a05a1067584be42c1f36107847d71b043a9a553c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Grob's Basic Electronics 11e
// Chapter No. I
// Example No. I_14
clc; clear;
// Square 3.0*10^4. Express the answer in scientific notation.
// Given data
A = 3.0*10^4; // Variable 1
B = A*A;
disp (B,'The square of 3.0*10^4 is')
disp ('i.e 9.0*10^8')
|