hi am new member here... can anyone give the code of this..i've tried
to figure out the code to finish this but i cant......pls help me.....

here is the output of my case study


Enter amount of Loan: 5000
Enter Interest: .10
Enter terms(month):10

550 445 440 435 430 425 420 415 410 405

Recommended Answers

All 4 Replies

Post the code you've already written and we'll tell you what's wrong with it.

int t,
float l,i;

printf("Enter amount of Loan: ")
scanf("%f", & l);
printf("Enter Interest:");
scanf("%f", & i);
printf("Enter terms(month): ");
scanf("%d", & t)
printf("\n");
for();
printf("%d");


i cant figure out the for loop of my case study please help me..............

int t,
float l,i;

printf("Enter amount of Loan: ")
scanf("%f", & l);
printf("Enter Interest:");
scanf("%f", & i);
printf("Enter terms(month): ");
scanf("%d", & t)
printf("\n");
for();
printf("%d");

hi am new member here... can anyone give the code of this..i've tried
to figure out the code to finish this but i cant......pls help me.....

Read this

int t,
float l,i;

printf("Enter amount of Loan: ")
scanf("%f", & l);
printf("Enter Interest:");
scanf("%f", & i);
printf("Enter terms(month): ");
scanf("%d", & t)
printf("\n");
for();
printf("%d");

And? Do you have a question that we can actually answer? Maybe a little detail as to what you are trying to do -- task, function, equation, something? And an attempt to do it would be nice. Just putting for(); is not an attempt to do anything.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.