導航:首頁 > 金融管理 > 投資理財管理系統源碼

投資理財管理系統源碼

發布時間:2021-08-01 21:36:43

⑴ 求一個小型學生理財系統的面向對象程序設計的源代碼

#include <iostream.h>
#include <fstream.h>
#include <string.h>
#include <stdlib.h>

const unsigned int COUNT = 5;//賬戶數量為5
typedef struct Money{
int Date;
float money;
Money *next;
}Income,Expense;
typedef struct{
Income *income;//收入記錄
Expense *expense;//支出記錄
float incomeaccount;//收入統計
float expenseaccount;//支出統計
int incomelenght;
int expenselenght;
}Account;
class AccountInformation{
private:
Account L[COUNT];
public:
AccountInformation();
~AccountInformation();
int InitAccount();
void getExpense(int choice[]);
void getIncome(int choice[]);
void addExpense(int choice,Expense *elem);
void addIncome(int choice,Expense *elem);
void updateIncome(int choice,Expense elem);
void updateExpense(int choice,Expense elem);
void deleteIncome(int choice,int date);
void deleteExpense(int choice,int date);
void countAll();
void saveInfo();
};
AccountInformation::AccountInformation()
{
InitAccount();
}
AccountInformation::~AccountInformation()
{
}
int AccountInformation::InitAccount()
{
for(int i=0;i<COUNT;i++)
{
L[i].income=new Income;
L[i].expense=new Expense;
if(L[i].income==NULL||L[i].expense==NULL)
{
cout<<"分配內存失敗."<<endl;
return 0;
}
L[i].incomelenght=0;
L[i].expenselenght=0;
L[i].incomeaccount=0;
L[i].expenseaccount=0;
}
Money *Q,*P;
char s[2];
//讀取收入信息
ifstream fin1("income.txt");
if(fin1.fail())
{
cout<<"文件打開失敗!"<<endl;
return 0;
}
for(i=0;i<COUNT;i++)
{
fin1>>s;
Q=L[i].income;
while(s[0]!='#')
{
if((int)s[1]==0)
Q->Date=(int)s[0]-48;
else
Q->Date=((int)s[0]-48)*10+(int)s[1]-48;
fin1>>Q->money;
Q->next=new Income;
L[i].incomelenght++;
L[i].incomeaccount+=Q->money;
P=Q;
Q=Q->next;
fin1>>s;
}
P->next=NULL;
}
fin1.close();
//讀取支出信息
ifstream fin2("expense.txt");
if(fin2.fail())
{
cout<<"文件打開失敗!"<<endl;
return 0;
}
for(i=0;i<COUNT;i++)
{
fin2>>s;
Q=L[i].expense;
while(s[0]!='#')
{
if((int)s[1]==0)
Q->Date=(int)s[0]-48;
else
Q->Date=((int)s[0]-48)*10+(int)s[1]-48;
fin2>>Q->money;
Q->next=new Income;
L[i].expenselenght++;
L[i].expenseaccount+=Q->money;
P=Q;
Q=Q->next;
fin2>>s;
}
P->next=NULL;
}
fin2.close();
return 1;
}
void AccountInformation::getExpense(int choice[])
{
Expense *Q;
float m=0.0;
for(int i=0;i<COUNT;i++)
if(choice[i]!=0)
{
Q=L[choice[i]-1].expense;
cout<<"賬戶"<<choice[i]<<"的支出信息為"<<endl;
cout<<"DATE\tMONEY"<<endl;
while(Q!=NULL)
{
cout<<Q->Date<<"\t"<<Q->money<<endl;
Q=Q->next;
}
cout<<"賬戶"<<choice[i]<<"的總支出信息為"<<L[choice[i]-1].expenseaccount<<endl<<endl;
m+=L[choice[i]-1].expenseaccount;
}
cout<<"總支出信息為"<<m<<endl;
}
void AccountInformation::getIncome(int choice[])
{
Income *Q;
float m=0.0;
for(int i=0;i<COUNT;i++)
if(choice[i]!=0)
{
Q=L[choice[i]-1].income;
cout<<"賬戶"<<choice[i]<<"的收入信息為"<<endl;
cout<<"DATE\tMONEY"<<endl;
while(Q!=NULL)
{
cout<<Q->Date<<"\t"<<Q->money<<endl;
Q=Q->next;
}
cout<<"賬戶"<<choice[i]<<"的總收入信息為"<<L[choice[i]-1].incomeaccount<<endl<<endl;
m+=L[choice[i]-1].incomeaccount;
}
cout<<"總收入信息為"<<m<<endl;
}
void AccountInformation::addExpense(int choice,Expense *elem)
{
Expense *Q,*P;
Q=L[choice-1].expense;
while(Q!=NULL)
{
if(Q->Date==elem->Date)
{
Q->money+=elem->money;
L[choice-1].expenseaccount+=elem->money;
return ;
}
if(Q->Date>elem->Date&&P->Date<elem->Date)
break;
P=Q;
Q=Q->next;
}
P->next=elem;
elem->next=Q;
L[choice-1].expenseaccount+=elem->money;
L[choice-1].expenselenght++;
}
void AccountInformation::addIncome(int choice,Expense *elem)
{
Expense *Q,*P;
Q=L[choice-1].income;
while(Q!=NULL)
{
if(Q->Date==elem->Date)
{
Q->money+=elem->money;
L[choice-1].incomeaccount+=elem->money;
return ;
}
if(Q->Date>elem->Date&&P->Date<elem->Date)
break;
P=Q;
Q=Q->next;
}
P->next=elem;
elem->next=Q;
L[choice-1].incomeaccount+=elem->money;
L[choice-1].incomelenght++;
}
void AccountInformation::updateExpense(int choice,Expense elem)
{
Expense *Q;
Q=L[choice-1].expense;
while(Q!=NULL)
{
if(Q->Date==elem.Date)
{
Q->money=elem.money;
L[choice-1].expenseaccount=elem.money-Q->money;
return ;
}
Q=Q->next;
}
}
void AccountInformation::updateIncome(int choice,Expense elem)
{
Expense *Q;
Q=L[choice-1].income;
while(Q!=NULL)
{
if(Q->Date==elem.Date)
{
Q->money=elem.money;
L[choice-1].incomeaccount=elem.money-Q->money;
return ;
}
Q=Q->next;
}
}
void AccountInformation::deleteExpense(int choice,int date)
{
Expense *Q,*P;
Q=L[choice-1].expense;
if(Q->Date==date)
{
L[choice-1].expense=NULL;
L[choice-1].expenseaccount=0.0;
L[choice-1].expenselenght=0;
}
while(Q!=NULL)
{
if(Q->Date==date)
{
P->next=Q->next;
L[choice-1].expenseaccount-=Q->money;
L[choice-1].expenselenght--;
return ;
}
P=Q;
Q=Q->next;
}
}
void AccountInformation::deleteIncome(int choice,int date)
{
Expense *Q,*P;
Q=L[choice-1].income;
if(Q->Date==date)
{
L[choice-1].income=NULL;
L[choice-1].incomeaccount=0.0;
L[choice-1].incomelenght=0;
}
while(Q!=NULL)
{
if(Q->Date==date)
{
P->next=Q->next;
L[choice-1].incomeaccount-=Q->money;
L[choice-1].incomelenght--;
return ;
}
P=Q;
Q=Q->next;
}
}
void AccountInformation::countAll()
{
Expense *Q;
float allincome=0.0;//總收入
float allexpense=0.0;//總支出
float a[COUNT],b[COUNT],c[COUNT],d[COUNT];
int date1,date2;
for(int i=0;i<COUNT;i++)
{
//收入信息
Q=L[i].income;
date1=Q->Date;
date2=Q->Date;
while (Q!=NULL)
{
if(Q->Date<date1)
date1=Q->Date;
if(Q->Date>date2)
date2=Q->Date;
Q=Q->next;
}
a[i]=L[i].incomeaccount/(date2-date1);//單位時間收入
c[i]=L[i].incomeaccount;//賬戶總收入
allincome+=L[i].incomeaccount;//總收入
//支出信息
Q=L[i].expense;
date1=Q->Date;
date2=Q->Date;
while (Q!=NULL)
{
if(Q->Date<date1)
date1=Q->Date;
if(Q->Date>date2)
date2=Q->Date;
Q=Q->next;
}
b[i]=L[i].expenseaccount/(date2-date1);//單位時間支出
d[i]=L[i].expenseaccount;//賬戶總支出
allexpense+=L[i].expenseaccount;//總支出
}
int k[COUNT]={1,2,3,4,5};
int l[COUNT]={1,2,3,4,5};
int t;
float f;
for(i=0;i<COUNT-1;i++)
for(int j=i+1;j<COUNT;j++)
if(a[i]>a[j])
{
f=a[j];
a[j]=a[i];
a[i]=f;
t=k[j];
k[j]=k[i];
k[i]=t;
}
else if(c[i]>c[j])
{
f=c[j];
c[j]=c[i];
c[i]=f;
t=l[j];
l[j]=l[i];
l[i]=t;
}
cout<<"總收入為:"<<allincome<<endl;
cout<<"賬戶收入分別為:\t\t單位時間內賬戶收入為:"<<endl;
for(i=0;i<COUNT;i++)
cout<<"賬戶"<<l[i]<<"的收入為:"<<c[i]<<"\t賬戶"<<k[i]<<"的收入為"<<a[i]<<endl;
for(i=0;i<COUNT;i++)
{
k[i]=i+1;
l[i]=i+1;
}
for(i=0;i<COUNT-1;i++)
for(int j=i+1;j<COUNT;j++)
if(b[i]>b[j])
{
f=a[j];
a[j]=a[i];
a[i]=f;
t=k[j];
k[j]=k[i];
k[i]=t;
}
else if(d[i]>d[j])
{
f=c[j];
c[j]=c[i];
c[i]=f;
t=l[j];
l[j]=l[i];
l[i]=t;
}
cout<<"總支出為:"<<allincome<<endl;
cout<<"賬戶支出分別為:\t\t單位時間內賬戶支出為:"<<endl;
for(i=0;i<COUNT;i++)
cout<<"賬戶"<<l[i]<<"的支出為:"<<d[i]<<"\t賬戶"<<k[i]<<"的支出為"<<b[i]<<endl;
}
void AccountInformation::saveInfo()
{
Money *Q;
ofstream fout1("income.txt",ios::trunc);
if(fout1.fail())
{
cout<<"文件打開失敗!"<<endl;
return ;
}
for(int i=0;i<COUNT;i++)
{
Q=L[i].income;
while(Q!=NULL)
{
fout1<<Q->Date<<" "<<Q->money<<'\n';
Q=Q->next;
}
fout1<<"#\n";
}
fout1.close();
ofstream fout2("expense.txt",ios::trunc);
if(fout2.fail())
{
cout<<"文件打開失敗!"<<endl;
return ;
}
for(i=0;i<COUNT;i++)
{
Q=L[i].expense;
while(Q!=NULL)
{
fout2<<Q->Date<<" "<<Q->money<<'\n';
Q=Q->next;
}
fout2<<"#\n";
}
fout2.close();
}
void menu1(int choice[COUNT])
{
char s[5];
cout<<"************************賬戶選擇************************"<<endl;
cout<<"請輸入賬戶號:(多個賬戶不需要空格隔開)";
cin>>s;
for(int i=0;i<COUNT;i++)
if(s[i]!='\0')
choice[i]=(int)s[i]-48;
else
break;
}
int menu()
{
int choice;
//system("cls");
cout<<"********************************************************"<<endl;
cout<<"********************小型學生理財系統********************"<<endl;
cout<<"1.查詢賬戶支出信息\t\t2.查詢賬戶收入信息."<<endl;
cout<<"3.添加賬戶支出信息\t\t4.添加賬戶收入信息."<<endl;
cout<<"5.修改賬戶支出信息\t\t6.修改賬戶收入信息."<<endl;
cout<<"7.刪除賬戶支出信息\t\t8.刪除賬戶收入信息."<<endl;
cout<<"9.收入支出統計\t\t\t10.保存賬戶數據."<<endl;
cout<<"0.退出系統"<<endl;
cout<<"********************************************************"<<endl;
cout<<"請輸入選擇:";
cin>>choice;
return choice;
}
void Empty(int choice[])
{
for(int i=0;i<COUNT;i++)
choice[i]=0;
}
void main()
{
system("color 5");
AccountInformation account;
int choice[COUNT];
int date;
Money elem;
elem.next=NULL;
while(true)
{
switch(menu())
{
case 1:Empty(choice);
menu1(choice);
account.getExpense(choice);
break;
case 2:Empty(choice);
menu1(choice);
account.getIncome(choice);
break;
case 3:Empty(choice);
menu1(choice);
cout<<"請輸入支出信息(DATE,Money):";
cin>>elem.Date>>elem.money;
account.addExpense(choice[0],&elem);
break;
case 4:Empty(choice);
menu1(choice);
cout<<"請輸入收入信息(DATE,Money):";
cin>>elem.Date>>elem.money;
account.addIncome(choice[0],&elem);
break;
case 5:Empty(choice);
menu1(choice);
cout<<"請輸入支出信息(DATE,Money):";
cin>>elem.Date>>elem.money;
account.updateExpense(choice[0],elem);
break;
case 6:Empty(choice);
menu1(choice);
cout<<"請輸入收入信息(DATE,Money):";
cin>>elem.Date>>elem.money;
account.updateIncome(choice[0],elem);
break;
case 7:Empty(choice);
menu1(choice);
cout<<"請輸入DATE:";
cin>>date;
account.deleteExpense(choice[0],date);
break;
case 8:Empty(choice);
menu1(choice);
cout<<"請輸入DATE:";
cin>>date;
account.deleteIncome(choice[0],date);
break;
case 9:account.countAll();
break;
case 10:account.saveInfo();
break;
case 0: exit(0);
}
}
}

自己要建兩個TXT文本。。。。income.txt expense.txt

⑵ 銀行信息管理系統源代碼

我做過

⑶ 小額貸款管理系統源碼可以在哪裡下載

免費下載的首先你要考慮到是否安全,畢竟免費的可能很多人在使用,其實開發一套管理系統源碼,更需要有經驗的開發人員或者團隊,從小額貸款系統功能方面來講,網上下載的小額貸款系統功能只是固定的幾個,如果想加入自己想要的功能,能下載到源代碼就好容易解決問題點。之前下載迪蒙小額貸款系統,是帶源代碼的,可以自己動手開發功能,並且嵌入全天候異常操作檢測、數據加密、防火牆、手機動態口令、多種密碼保護等安全策略,這樣系統功能可以自己定義修改而滿足需求了。你自己酌情考慮下

⑷ 填寫:直接投資外匯管理信息系統 銀行代碼12位中國銀行 東莞分行代碼是什麼

應該是這個:441900000101

⑸ 急求C++理財管理信息系統代碼 是一個課程設計

#include "stdafx.h"
#include "FinanceBook.h"
#include "AccountDaily.h"

// CAccountDaily 對話框

IMPLEMENT_DYNAMIC(CAccountDaily, CDialog)

CAccountDaily::CAccountDaily(CWnd* pParent /*=NULL*/)
: CDialog(CAccountDaily::IDD, pParent)
{

EnableAutomation();

}

CAccountDaily::~CAccountDaily()
{
}

void CAccountDaily::OnFinalRelease()
{
// 釋放了對自動化對象的最後一個引用後,將調用
// OnFinalRelease。基類將自動
// 刪除該對象。在調用該基類之前,請添加您的
// 對象所需的附加清理代碼。

CDialog::OnFinalRelease();
}

void CAccountDaily::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}

BEGIN_MESSAGE_MAP(CAccountDaily, CDialog)
ON_BN_CLICKED(IDOK, &CAccountDaily::OnBnClickedOk)
END_MESSAGE_MAP()

BEGIN_DISPATCH_MAP(CAccountDaily, CDialog)
END_DISPATCH_MAP()

// 注意: 我們添加 IID_IAccountDaily 支持
// 以支持來自 VBA 的類型安全綁定。此 IID 必須同附加到 .IDL 文件中的
// 調度介面的 GUID 匹配。

//
static const IID IID_IAccountDaily =
};

BEGIN_INTERFACE_MAP(CAccountDaily, CDialog)
INTERFACE_PART(CAccountDaily, IID_IAccountDaily, Dispatch)
END_INTERFACE_MAP()

// CAccountDaily 消息處理程序

BOOL CAccountDaily::OnInitDialog()
{
CDialog::OnInitDialog();

// TODO: 在此添加額外的初始化
CButton *pRadioButton = (CButton*)GetDlgItem(IDC_PAYOUT);
pRadioButton->SetCheck(true);
CButton *pCheckBox = (CButton*)GetDlgItem(IDC_FORMAT_DAILY);
pCheckBox->SetCheck(true);

return TRUE; // return TRUE unless you set the focus to a control
// 異常: OCX 屬性頁應返回 FALSE
}

void CAccountDaily::CheckEnter()
{
//該函數的作用是檢查輸入格式,判斷RadioButton和CheckBox的狀態
CButton *pRadioButton = (CButton*)GetDlgItem(IDC_PAYOUT);
CButton *pCheckBox = (CButton*)GetDlgItem(IDC_FORMAT_DAILY);

int IsRadioButtonChecked = pRadioButton->GetCheck(),
IsCheckBox = pCheckBox->GetCheck();

GetDlgItemText(IDC_DATE_DAILY,dateTime);
GetDlgItemText(IDC_RESUME,resume);
GetDlgItemText(IDC_AMOUNT_DAILY,amount);
GetDlgItemText(IDC_REMARK_DAILY,remark);

if(!resume.GetLength())
{
MessageBox(L"費用摘要 不能為空! ",L"重要提示",MB_ICONWARNING);
GetDlgItem(IDC_RESUME)->SetFocus();
}
else if(!amount.GetLength())
{
MessageBox(L"發生金額 不能為空! ",L"重要提示",MB_ICONWARNING);
GetDlgItem(IDC_AMOUNT_DAILY)->SetFocus();
}
else
{
if(IsRadioButtonChecked)
type = L"支出";
else
type = L"收入";

int dot = 0, space = 0, ch = 0;
CString str;
for(int index = 0; index != amount.GetLength(); ++index)
{
if(amount.GetAt(index) == '.')
dot++;
if(amount.GetAt(index) == ' ')
space++;
if(amount.GetAt(index) < '0' || amount.GetAt(index) > '9')
{
str = amount.GetAt(index);
ch++;
}
}
if(ch > 0)
{
/***BUG:當字串中有其他字元,形如「a.6」時,會認為格式正確。***/
if(str != '.' && str != ' ' || (space > 0 || dot > 1) )
{
MessageBox(L"金額格式有誤,請您檢查輸入! ",L"重要提示",MB_ICONWARNING);
amountIsRigth = false;
GetDlgItem(IDC_AMOUNT_DAILY)->SetFocus();
}
else
amountIsRigth = true;
}

if(IsCheckBox)
amount = L"¥" + amount;
}
}

void CAccountDaily::OnBnClickedOk()
{
// TODO: 在此添加控制項通知處理程序代碼
//OnOK();
CheckEnter();
if(resume.GetLength() && amount.GetLength() && amountIsRigth)
MessageBox(dateTime + L"\n\n" + resume + L"\n\n" + type + L"\n\n" + amount + L"\n\n" + remark);

}

⑹ 急求!!!基於java的家庭理財系統 完整項目 可以實現功能的所有源代碼,謝謝啊! 高分

這些都是企業的商業機密,不可能通過一個問題就給你了,還是自己慢慢研究吧。

⑺ 誰有Java+MySQL寫的個人理財系統源代碼(jsp也行),急求!!!!

可以開發, 不過這種一般沒有免費源碼了

⑻ 請問有沒有免費的貸款管理系統源碼

免費的估計有問題吧,貸款管理系統,畢竟是很嚴謹的系統,因為小貸管理系統里還包含審批系統、 業務系統、財務系統、催收系統等,所以最好是斟酌下。免費下載的首先你要考慮到是否安全,畢竟免費的可能很多人在使用,其實開發一套管理系統源碼,更需要有經驗的開發人員或者團隊,比如迪蒙貸款管理系統不僅功能滿足基本需求,而且系統在業務上操作的標准化,流程化,能幫助小額貸款公 司完善業務,系統功能強大可以幫助企業合理規劃管理,降低信貸違約風險,減少貸款壞賬率。所以要綜合去評估系統,不能僅僅考慮系統的價格。你自己酌情考慮下,免費的還是謹慎些吧。

⑼ 跪求家庭理財管理系統JAVA代碼基於B/S的

你直接說JSP不就行了嘛,還JAVA B/s 最好還是自己做吧,JSP沒免費的。我也剛做好一套JSP財務管理系統和論文PPT答辯材料。不容易啊。

⑽ 求一家庭理財管理系統(C++/C#)的源程序 等各位大神的援助[email protected]

建議: 7. 重復步驟3的操作,單擊「格式」菜單的「條件格式」選項,在彈出對話框中將「條件1」設為「單元格數值」、「小於」、「500」。然後單擊「格式」按鈕,在「字體」卡片上將文字設為「白色」,並在「圖案」卡片中選擇一種無底紋的「紫色」。回到「條件格式」的主對話框,單擊「添加」按鈕,增添「條件2」為 「單元格數值」、「大於或等於」、「500」,其「格式」為常規字型的「黑色」,按「確定」(效果如圖6所示)。

閱讀全文

與投資理財管理系統源碼相關的資料

熱點內容
地獄解剖類型電影 瀏覽:369
文定是什麼電影 瀏覽:981
什麼影院可以看VIP 瀏覽:455
受到刺激後身上會長櫻花的圖案是哪部電影 瀏覽:454
免費電影在線觀看完整版國產 瀏覽:122
韓國雙胞胎兄弟的愛情電影 瀏覽:333
法國啄木鳥有哪些好看的 瀏覽:484
能看片的免費網站 瀏覽:954
七八十年代大尺度電影或電視劇 瀏覽:724
歐美荒島愛情電影 瀏覽:809
日本有部電影女教師被學生在教室輪奸 瀏覽:325
畸形喪屍電影 瀏覽:99
美片排名前十 瀏覽:591
韓國電影新媽媽女主角叫什麼 瀏覽:229
黑金刪減了什麼片段 瀏覽:280
泰國寶兒的電影有哪些 瀏覽:583
3d左右格式電影網 瀏覽:562
跟師生情有關的電影 瀏覽:525
恐怖鬼片大全免費觀看 瀏覽:942
電影里三節是多長時間 瀏覽:583