blob: 67b7ee91830078f92a314136e8f38c0710cc5222 (
plain)
1
2
3
4
5
6
7
8
9
|
//chapter 6 Ex 5
clc;
clear;
close;
Atotal=36; Btotal=44;
avgA=40; avgB=35;
avg=(Atotal*avgA+Btotal*avgB)/(Atotal+Btotal);
mprintf("The average weight of whole class is %.2f kilograms",avg);
|