日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

本文將介紹如何使用C++編寫一個簡單的記賬本程序,隨著生活成本的不斷上升,越來越多的人開始關(guān)注自己的財務(wù)狀況。使用記賬本可以記錄收支情況,提高理財能力,C++語言的優(yōu)勢在于其高效性和可移植性,非常適合編寫此類程序。

1.確定程序功能和需求

在編寫程序之前,我們首先需要明確程序要實現(xiàn)的功能和需求,一個簡單的記賬本程序需要具備以下功能:

(1)能夠記錄每一筆支出和收入的金額和類型,并記錄時間;

(2)能夠計算總體收支情況,包括收入和支出的總數(shù);

(3)能夠生成報表,統(tǒng)計每個類型的支出和收入總和;

(4)能夠?qū)τ涗涍M(jìn)行增刪改查操作。

    設(shè)計數(shù)據(jù)結(jié)構(gòu)和算法

在程序中,我們需要使用數(shù)據(jù)結(jié)構(gòu)來存儲每一筆記錄,常用的數(shù)據(jù)結(jié)構(gòu)有線性表、棧和隊列等。在此,我們選擇使用線性表來存儲每一筆記錄,每條記錄包括以下信息:

(1)記錄的唯一ID編號;

(2)記錄的時間戳;

(3)記錄類型,包括收入和支出;

(4)記錄金額;

(5)記錄詳情。

對于算法,我們需要設(shè)計函數(shù)來實現(xiàn)各種不同的操作,如添加、刪除、更新、查詢和統(tǒng)計,這些操作需要訪問記錄的數(shù)據(jù),同時也需要計算收支總額和類型分類總和并生成相應(yīng)的報表。

    編寫代碼

在開始編寫代碼之前,我們需要進(jìn)行一些準(zhǔn)備工作,包括:

(1)選擇一個集成開發(fā)環(huán)境(IDE),例如Visual Studio;

(2)學(xué)習(xí)C++基本語法和使用STL庫進(jìn)行編程;

(3)設(shè)計程序的類和函數(shù)。

在C++中,我們可以使用類來表示記賬本程序,這個類可以包含各種成員函數(shù)和成員變量,以及相應(yīng)的訪問控制符。

下面是一個簡單的記賬本程序的代碼示例:

#include <iostream>
#include <vector>

using namespace std;

class Record {
public:
  int id;
  string date;
  string type;
  double amount;
  string description;
  Record(int _id, string _date, string _type, double _amount, string _description) {
    id = _id;
    date = _date;
    type = _type;
    amount = _amount;
    description = _description;
  }
};

class AccountBook {
public:
  vector<Record> records;

  void addRecord(int id, string date, string type, double amount, string description) {
    records.push_back(Record(id, date, type, amount, description));
  }

  void deleteRecord(int id) {
    for (vector<Record>::iterator it = records.begin(); it != records.end(); it++) {
      if (it->id == id) {
        records.erase(it);
        break;
      }
    }
  }

  void updateRecord(int id, double amount) {
    for (vector<Record>::iterator it = records.begin(); it != records.end(); it++) {
      if (it->id == id) {
        it->amount = amount;
        break;
      }
    }
  }

  void searchRecords(string type) {
    for (vector<Record>::iterator it = records.begin(); it != records.end(); it++) {
      if (it->type == type) {
        cout << "ID: " << it->id << endl;
        cout << "Date: " << it->date << endl;
        cout << "Type: " << it->type << endl;
        cout << "Amount: " << it->amount << endl;
        cout << "Description: " << it->description << endl;
      }
    }
  }

  void generateReport() {
    vector<double> income(5, 0);
    vector<double> expense(5, 0);
    for (vector<Record>::iterator it = records.begin(); it != records.end(); it++) {
      if (it->type == "Income") {
        income[0] += it->amount;
        if (it->description == "Salary") income[1] += it->amount;
        else if (it->description == "Bonus") income[2] += it->amount;
        else if (it->description == "Investment") income[3] += it->amount;
        else if (it->description == "Gift") income[4] += it->amount;
      }
      else if (it->type == "Expense") {
        expense[0] += it->amount;
        if (it->description == "Food") expense[1] += it->amount;
        else if (it->description == "Clothing") expense[2] += it->amount;
        else if (it->description == "Housing") expense[3] += it->amount;
        else if (it->description == "Transportation") expense[4] += it->amount;
      }
    }
    cout << "Total income: " << income[0] << endl;
    cout << "Salary: " << income[1] << endl;
    cout << "Bonus: " << income[2] << endl;
    cout << "Investment: " << income[3] << endl;
    cout << "Gift: " << income[4] << endl;
    cout << "Total expense: " << expense[0] << endl;
    cout << "Food: " << expense[1] << endl;
    cout << "Clothing: " << expense[2] << endl;
    cout << "Housing: " << expense[3] << endl;
    cout << "Transportation: " << expense[4] << endl;
  }

  double calculateBalance() {
    double income = 0, expense = 0;
    for (vector<Record>::iterator it = records.begin(); it != records.end(); it++) {
      if (it->type == "Income") {
        income += it->amount;
      }
      else if (it->type == "Expense") {
        expense += it->amount;
      }
    }
    return income - expense;
  }
};

void printMenu() {
  cout << "1. Add record" << endl;
  cout << "2. Delete record" << endl;
  cout << "3. Update record" << endl;
  cout << "4. Search records" << endl;
  cout << "5. Generate report" << endl;
  cout << "6. Calculate balance" << endl;
  cout << "7. Quit" << endl;
}

int main() {
  AccountBook accountBook;
  int choice;
  while (true) {
    printMenu();
    cout << "Enter your choice: ";
    cin >> choice;
    if (choice == 7) {
      cout << "Goodbye!" << endl;
      break;
    }
    switch (choice) {
      case 1: {
        int id;
        string date, type, description;
        double amount;
        cout << "Enter ID: ";
        cin >> id;
        cout << "Enter date (YYYY-MM-DD): ";
        cin >> date;
        cout << "Enter type (Income/Expense): ";
        cin >> type;
        cout << "Enter amount: ";
        cin >> amount;
        cout << "Enter description: ";
        cin >> description;
        accountBook.addRecord(id, date, type, amount, description);
        cout << "Record added." << endl;
        break;
      }
      case 2: {
        int id;
        cout << "Enter ID: ";
        cin >> id;
        accountBook.deleteRecord(id);
        cout << "Record deleted." << endl;
        break;
      }
      case 3: {
        int id;
        double amount;
        cout << "Enter ID: ";
        cin >> id;
        cout << "Enter amount: ";
        cin >> amount;
        accountBook.updateRecord(id, amount);
        cout << "Record updated." << endl;
        break;
      }
      case 4: {
        string type;
        cout << "Enter type (Income/Expense): ";
        cin >> type;
        accountBook.searchRecords(type);
        break;
      }
      case 5: {
        accountBook.generateReport();
        break;
      }
      case 6: {
        cout << "Balance: " << accountBook.calculateBalance() << endl;
        break;
      }
      default: {
        cout << "Invalid choice." << endl;
        break;
      }
    }
  }
  return 0;
}

登錄后復(fù)制

    測試程序

在完成代碼編寫后,我們需要對程序進(jìn)行測試。測試程序的具體方法包括:

(1)輸入數(shù)據(jù)和操作,例如添加、刪除、更新、查詢、報表等;

(2)檢查程序是否輸出了正確的結(jié)果;

(3)檢查程序是否能夠正常退出。

在測試期間,我們可以使用不同的數(shù)據(jù)進(jìn)行測試,以確保程序的正確性和穩(wěn)定性。如果發(fā)現(xiàn)程序存在問題,需要對代碼進(jìn)行修改和調(diào)試。

    總結(jié)

本文介紹了如何使用C++編寫一個簡單的記賬本程序,包括確定程序功能和需求、設(shè)計數(shù)據(jù)結(jié)構(gòu)和算法、編寫代碼和測試程序。這個程序具有添加、刪除、更新、查詢、報表和計算余額等功能,能夠幫助人們更好地管理自己的財務(wù)狀況。通過學(xué)習(xí)本文內(nèi)容,讀者可以更深入地理解C++語言的應(yīng)用和程序設(shè)計的基本方法,提高自己的編程水平。

分享到:
標(biāo)簽:C++ 編程 記賬本
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達(dá)人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定