一个C语言的程序(望高手给出详尽的注释,可以加分,由于程序较长,在回答中给出)

来源:百度知道 编辑:UC知道 时间:2024/06/16 20:48:11

/*第4题 个人财政支出管理--源代码及关键源代码注解如下:*/
/*The Code from web site :www.technocode.scriptmania.com.*/
#include <iostream.h>
#include <fstream.h>
#include <conio.h>
#include <iomanip.h>

void Deposit();
void Withdraw();
void ViewTotal();
void SetGoal(); //Declaring all my functions
void depositDisplay();
void mainDisplay();
void withdrawDisplay();
void setgoalDisplay();
void viewtotalDisplay();

int main(){
char select;
//clrscr(); // if add ?
mainDisplay();//Title that displays heading with background color.
cout<<"\n\n\t<1> Deposit"<<endl;
cout<<"\n\t<2> Withdraw"<<endl;
cout<<"\n\t<3> View Total"<