#include <iostream>
using namespace std;
template <class T>
T accumulator(int count)
{
T d, sum = 0;
for (int i = 0; i < count; ++i){
cout << "data" << i << " = ";
cin >> d;
sum += d;
}
......................
阅读全部 | 2020年8月10日 10:18
#include <iostream>
#include <string>
using namespace std;
class line
{
public:
line() { setValues(); }; // default constructor which calls setValues()
line(const line &n) :a(n.a), b(n.b), c(n.c){}; // copy constructor
void setValues(); // prompts users to input coefficients
void printEquation(); // print the equation
friend void calIntersection(line &l1, line &l2); // calculate the intersection of two lines
......................
阅读全部 | 2020年8月10日 10:06
#include <iostream>
#include <string>
using namespace std;
class CPU
{
public:
CPU(float freq, float price);
void upgradeCPU();
void printCPUInfo();
private:
float CPU_Frequency;
......................
阅读全部 | 2020年8月10日 09:44
#include <iostream>
using namespace std;
class Mortgage
{
protected:
double Payment; // the monthly payment
double Loan; // the dollar amount of the loan
double Rate; // the annual interest rate
double Years; // the number of years of the loan
public:
Mortgage()
......................
阅读全部 | 2020年8月10日 09:20
int ReadStuInfoFromFile(char *name, student **stu)
{
FILE *f;
student* stuTbl;
int count = 0;
*stu = NULL;
if (name && stu != NULL){
f = fopen(name, "rb");
if (f != NULL){
fread(&count, sizeof(count), 1, f);
if (count > 0){
......................
阅读全部 | 2020年7月28日 16:18
/*
客户:登陆,修改密码,充值,手机绑定,退出
管理员:登陆 ,添加会员 ,查看库存 ,退出
*/
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
......................
阅读全部 | 2020年7月1日 00:05
typedef unsigned char Card;
// 扑克元素数据
const Card* cardTbl =
"\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d"
"\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d"
"\x21\x22\x23\x24\x25\x26\x27\x28\x29\x2a\x2b\x2c\x2d"
"\x31\x32\x33\x34\x35\x36\x37\x38\x39\x3a\x3b\x3c\x3d";
// 洗牌
void shuffle(int need, Card handTbl[], Card left[], int cnt)
{
......................
阅读全部 | 2020年6月30日 19:08
// 生命类
class Life
{
protected:
int age; // 年龄
int year; // 寿命
public:
Life(int a, int y):age(a), year(y){}
public:
int getAge() { return age; }
......................
阅读全部 | 2020年6月30日 16:45
//1.1
#include <stdio.h>
int main()
{
int i,sum = 0;
for (i = 1; i <= 100; sum += i++){}
printf("%d", sum);
return 0;
}
阅读全部 | 2020年6月29日 09:59
#include <easyx.h>
#include <time.h>
#include <conio.h>
// 公共基类,可以做高级抽象
struct Cell
{
int x, y;
void __update(int deltaX, int deltaY)
{
x += deltaX;
y += deltaY;
......................
阅读全部 | 2020年6月27日 23:39