Translate

Wednesday, 30 October 2013

The AVCNU Annual Conference Gets New Date. To hold between Nov. 10th and 14th 2013, The Conference of the Association of Vice-Chancellors of Nigerian Universities (AVCNU)–FUTA 2013
Theme:The Nigerian University System and the Challenges and Prospects of Globalisation.

you can visit the link below for registration and more details;

AVCNU 2013.


Saturday, 26 October 2013

futa students win ISPON software cup.

Oladapo Oluwadora Glory, Aboluwarin Olaluwa David and Banjo Mofesola Paul of the Federal University of Technology FUTA , have won the 2013 ISPON software cup....up FUTA!!!!!.

Friday, 25 October 2013

NUGA 2013 logo unveiled


the logo for  NUGA 2013 as been unveiled.
what if the strike doesn't end this year?.

Wednesday, 23 October 2013

the new auditorium

make sense abi/.
this 500L are lucky...cos they will convocate inside this thing.
they shuld be thankful to asuu.
CLS
REM program to calculate the credit card balance
input "minimum monthly payment rate;",b
input "the outstanding balance",bal
a = B
ann = 0.02
m = a * BAL
i = 0.0017 * BAL
pp = m - i
bal1 = BAL - pp
PRINT "the minimum monthly payment and remaining balance month1",m,bal
i = 0.0017 * bal1
m = a * bal1
pp = m - i
bal2 = bal1 - pp
PRINT "the minimum monthly payment and remaining balance month2",m,bal2
i = 0.0017 * bal2
m = a * bal2
pp = m - i
bal3 = bal2 - pp
PRINT "the minimum monthly payment and remaining balance month3",m,bal3
i = 0.0017 * bal3
m = a * bal3
pp = m - i
bal4 = bal3 - pp
PRINT "the minimum monthly payment and remaining balance month4",m,bal4
i = 0.0017 * bal4
m = a * bal4
pp = m - i
bal5 = bal4 - pp
PRINT "the minimum monthly payment and remaining balance month5",m,bal5
i = 0.0017 * bal5
m = a * bal5
pp = m - i
bal6 = bal5 - pp
PRINT "the minimum monthly payment and remaining balance month6",m,bal6
i = 0.0017 * bal6
m = a * bal6
pp = m - i
bal7 = bal6 - pp
PRINT "the minimum montly payment and remaining balance month7",m,bal7
i = 0.0017 * bal7
m = a * bal7
pp = m - i
bal8 = bal7 - pp
PRINT "the minimun monthly payment and remaining balance month8",m,bal8
i = 0.0017 * bal8
m = a * bal8
pp = m - i
bal9 = bal8 - pp
PRINT "the minimum monthly payment and remaining balance month9",m,bal9
i = 0.0017 * bal9
m = a * bal9
pp = m - i
bal10 = bal9 - pp
PRINT "the minimum monthly payment and remaining balance month10",m,bal10
i = 0.0017 * bal10
m = a * bal10
pp = m - i
bal11 = bal10 - pp
PRINT "the minimum monthly payment and remaining balance month11",m,bal11
i = 0.0017 * bal11
m = a * bal11
pp = m - i
bal12 = bal11 - pp
PRINT "the minimum payment aand remaining balance month12",m,bal12
END



Monday, 7 October 2013

program to calculate the sales of products in a shop

To write a program to calculate the sales of product in a shop you can use:
CLS
REM program to calculate sales of products
DIM m(i)
summ = 0
sums = 0
sumn =  0
sumf = 0
sump = 0
sumb = 0
FOR i = 1 TO 6
READ mi(i)
summ = summ + mi(i)
NEXT i
DATA 20,45,20,40,50,35
PRINT"the sales of milk is:",summ
FOR i = 1 TO 6
READ s(i)
sums = sums + s(i)
NEXT i
DATA  30,10,90,45,15,60
PRINT"sales of milk is:",sums
FOR i = 1 TO 6
READ n(i)
sumn = sumn + n(i)
NEXT i
DATA ,10,20,80,12,15,50
PRINT"sales of notebooks is:",sumn
FOR i = 1 TO 6
READ f(i)
sumf = sumf + f(i)
NEXT i
DATA 34,24,50,16,25,50
PRINT"the sales of files is",sumf
FOR i = 1 TO 6
READ p(i)
sump = sump + p(i)
NEXT i
DATA 56,43,12,15,20,35
PRINT"the sales of pencil is:",sump
FOR i = 1 TO 6
READ b(i)
sumb = sumb + b(i)
NEXT i
DATA 23,59,20,10,40,30
PRINT"the sales of biro:",sumb
PRINT"THE TOTAL SALES FOR THE WEEK IS:"
total= summ + sums + sumn + sumf + sump + sumb
PRINT,total
PRINT"THE PRODUCT WITH THE HIGHEST NUMBER OF SALES IS:"
PRINT"sugar",sums
PRINT"THE SALES OF BIRO AND PENCIL:"
birpen= sumb + sump
PRINT,birpen
END