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.
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 ratings0% 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.
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(); }