//Caption:Program to calculate number of stations.
//Exa:7.5
clc;
clear;
close;
//Given:
F=6*10^6;
each=400*10^3;
n=F/each;
printf("\n total number of stations= %fstations",n);