共计 2830 个字符,预计需要花费 8 分钟才能阅读完成。
威客悬赏工作公布零碎源码是用来进行日常在线工作接单解决的威客零碎。零碎能够用来公布或解决悬赏工作,甚至能够晓得一个帐户的信息,如工作类型和解决状态等,它们很不便,易于应用,它容许雇主和威客执行疾速自助交易。
残缺源码:wk.wxlbyx.icu
在本文中,咱们将探讨用 c ++ 编写的开源威客平台零碎,它是一个为用户提供理论工作公布零碎源码所应该具备的各个方面的利用接口。它是一个菜单驱动的架构,包含:
1、威客注册登录页面;
2、显示正在进行交易悬赏工作;
3、雇主账户管理系统;
4、充值和体现零碎;
5、工作公布和接单解决零碎;
6、接单工作投诉和反馈解决零碎。
办法:这个源码应用了类的基本概念,PHP 中的 Access Modifiers、数据类型、变量和 Switch Case 等。以下是将要实现的性能:
●setvalue(): 这个函数在这里应用 c ++ 中的根本输出和输入办法来设置数据,即 cout 和 cin 语句,它们别离显示和承受来自键盘的输出,即来自用户的输出。
●showvalue(): 用于打印数据。
●deposit(): 这个函数帮忙将钱存入特定的账户。
●showbal(): 该函数显示贷款后可用的总余额。
●withdrawl(): 这个性能有助于从帐户中提款。
●main(): 这个函数在有限 while 循环中有一个简略的切换状况 ( 做出抉择),这样每次用户都能够抉择选项。
上面是应用上述办法的 PHP 程序:
// Management System
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;
class Bank {
// Private variables used inside class
private:
string name;
int accnumber;
char type[10];
int amount = 0;
int tot = 0;
// Public variables
public:
// Function to set the person's data
void setvalue()
{
cout << "Enter name\n";
cin.ignore();
// To use space in string
getline(cin, name);
cout << "Enter Account number\n";
cin >> accnumber;
cout << "Enter Account type\n";
cin >> type;
cout << "Enter Balance\n";
cin >> tot;
}
// Function to display the required data
void showdata()
{
cout << "Name:" << name << endl;
cout << "Account No:" << accnumber << endl;
cout << "Account type:" << type << endl;
cout << "Balance:" << tot << endl;
}
// Function to deposit the amount in ATM
void deposit()
{
cout << "\nEnter amount to be Deposited\n";
cin >> amount;
}
// Function to show the balance amount
void showbal()
{
tot = tot + amount;
cout << "\nTotal balance is:" << tot;
}
// Function to withdraw the amount in ATM
void withdrawl()
{
int a, avai_balance;
cout << "Enter amount to withdraw\n";
cin >> a;
avai_balance = tot - a;
cout << "Available Balance is" << avai_balance;
}
};
// Driver Code
int main()
{
// Object of class
Bank b;
int choice;
// Infinite while loop to choose
// options everytime
while (1) {
cout << "\n~~~~~~~~~~~~~~~~~~~~~~~~~~"
<< "~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
<< "~~~WELCOME~~~~~~~~~~~~~~~~~~"
<< "~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
<< "~~~~~~~~~\n\n";
cout << "Enter Your Choice\n";
cout << "\t1. Enter name, Account"
<< "number, Account type\n";
cout << "\t2. Balance Enquiry\n";
cout << "\t3. Deposit Money\n";
cout << "\t4. Show Total balance\n";
cout << "\t5. Withdraw Money\n";
cout << "\t6. Cancel\n";
cin >> choice;
// Choices to select from
switch (choice) {
case 1:
b.setvalue();
break;
case 2:
b.showdata();
break;
case 3:
b.deposit();
break;
case 4:
b.showbal();
break;
case 5:
b.withdrawl();
break;
case 6:
exit(1);
break;
default:
cout << "\nInvalid choice\n";
}
}
}
输入:
显示威客工作抉择:
悬赏工作 1:
悬赏工作 2:
悬赏工作 3:
悬赏工作 4: