blob: c60adb6ad53d2de5ed6b4bc74c81813da99afd37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter 08: Advanced Counting Techniques
clc;
clear;
no_cs=25 //no of students majoring in computer science
no_math=13 //no of students majoring in mathematics
no_mathcs=8 //no of students majoring in computer science and mathematics
aub=no_cs+no_math-no_mathcs
mprintf("The total no of students in the class is %d",aub)
|