hi everybody does anybody know about this


i have one question please give me reply for this i am new for
android

payment = (principal * interest) / (1 - Math.pow((1 + interest), -
tennure)) ;

        balance = principal ;

        for (int period = 1 ; period <= tennure ; period++) {



                curInterest = balance * interest ;

                if (period == tennure) {
                        payment = balance + curInterest ;
                        }

                curPrincipal = payment - curInterest ;
                balance -= curPrincipal ;

}




////

////

///

i want to show these values in table format i tried by creating a
table layout dynamically but it is not working


please help me


-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to