summaryrefslogtreecommitdiff
path: root/659/CH4/EX4.1cs/Casestudy4_1.sce
blob: c5ea1573bbaae683fe4c6bf35afe4bf4bb161d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//               Case Study:-Chapter 4 ,Page No:106
//               1.Inventory Report

ITEMS=4;
i=1;
printf("[Enter in single line seperated be spaces]\n");
while(i <= 4)
    printf("Enter code,quantity, and rate:");
     [code(i),quantity(i),rate(i)]=scanf("%s %d %f");
     i=i+1;
end
printf("INVENTORY REPORT\n");
printf("----------------------------------------------\n");
printf("Code        Quantity     Rate      Value\n");
printf("----------------------------------------------\n");
total_value=0;
i=1;
while(i<=ITEMS)
    value=quantity(i)*rate(i);
    printf("%6s %10d %10.2f    %e\n",code(i),quantity(i),rate(i),value);
    total_value= total_value+value;
    i=i+1;
end    
    printf("----------------------------------------------\n");
    printf("              Total Value = %e\n",total_value);
    printf("----------------------------------------------\n");