i have made an electricity bill program and wants to add graphics in it
mean when it need input from user it writes in graphics.............
so plz help me in making this.......
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
void main()
{
int unit=3;
int reading,previous,current,consumed,bill;
cout<<"enter your meter no";
cin>>reading;
cout<<"enter previous redaing of meter";
cin>>previous;
cout<<"enter current reading of meter";
cin>>current;
consumed=current-previous;
cout<<"units used in this month="<<consumed<<endl;
bill=consumed*unit;
cout<<"total bill="<<bill<<"Rs";
getch();
closegraph();
}