Let Us GCC/Code 1.2

From Wikibooks, open books for an open world
Jump to navigation Jump to search

Old Code[edit | edit source]

/* Calculation of simple interest */
/* Author gekay Date 25/05/2004 */
main( )
{
    int p, n ;
    float r, si ;
    printf ( "Enter values of p, n, r" ) ;
    scanf ( "%d %d %f", &p, &n, &r ) ;
    
    si = p * n * r / 100 ;
    printf ( "%f" , si ) ;
}

New Code[edit | edit source]

/* Calculation of simple interest */
/* Author gekay Date 25/05/2004 */
/* Editor GReaperEx Date 19/7/2015 */

#include <stdio.h>

int main(void)
{
    int p, n ;
    float r, si ;

    printf("Enter values of p, n, r");
    scanf("%d%d%f", &p, &n, &r);

    si = p*n*r/100 ;
    printf("%f", si);
}