Friday, 11 December 2015

Write a program that inputs total number of students and fee per student ang calculate total fee

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{ float a,b,c;
 cout<<"total number of student"<<endl;
 cin>>a;
 cout<<"Fee Per Student"<<endl;
 cin>>b;
 c=a*b;
 cout<<"Total Fee ="<<c;
 getch();

}

No comments:

Post a Comment