0% found this document useful (0 votes)
40 views3 pages

Computer Project

This 3 sentence summary provides the essential information about the document: The document appears to be a computer science journal created by a student named Pooja Pavithran for their class, as it includes acknowledgements of help from their teacher Mrs. Poonam and contains a short C++ program to calculate simple interest that outputs the results of sample inputs.

Uploaded by

poojapavithran
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views3 pages

Computer Project

This 3 sentence summary provides the essential information about the document: The document appears to be a computer science journal created by a student named Pooja Pavithran for their class, as it includes acknowledgements of help from their teacher Mrs. Poonam and contains a short C++ program to calculate simple interest that outputs the results of sample inputs.

Uploaded by

poojapavithran
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

Computer science

Journal

C++

Pooja Pavithran
Xl – A
Roll no.
ACKNOWLEDGEMENTS

THIS JOURNAL IS A COLLECTIVE EFFORT OF ME


AND MY COMPUTER SCIENCE TEACHER
MRS.POONAM.HER
OVERWHELMING SUPPORT ENCOURAGED ME TO
PREPARE THIS JOURNAL.
AND I THANK HER

Q1. Write a program to out the simple interest.


#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float p, r, t, SI;
cout<<"Enter the value for principal=" ;
cin>>p;
cout<<"Enter the value for rate of interest=";
cin>>r;
cout<<"Enter the value for time=";
cin>>t;
SI=(p*r*t)/100;
cout<<SI<<" is the simple interest.";
getch();
}

\\\\\\\\\\\\\\\\\\\\\\\\\\\\ OUTPUT \\\\\\\\\\\\\\\\\\\\\\\\


Enter the value for principal
1000
Enter the value for rate of interest
10
Enter the value for time
5
500 is the simple interest

You might also like