#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
......................
阅读全部
|
gougoudan
贴于 2020年8月10日 10:06
hide
bbsi
#include <iostream>
#include <string>
using namespace std;
class CPU
{
public:
CPU(float freq, float price);
void upgradeCPU();
void printCPUInfo();
private:
float CPU_Frequency;
......................
阅读全部
|
gougoudan
贴于 2020年8月10日 09:44
hide
bbsi
#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()
......................
阅读全部
|
gougoudan
贴于 2020年8月10日 09:20
hide
bbsi
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2019-01-20 22:23
# @Author : Apull
# @File : 佩奇.py
from turtle import *
def nose(x, y): # 鼻子
penup() # 提起笔
goto(x, y) # 定位
pendown() # 落笔,开始画
......................
阅读全部
|
apull
贴于 2020年8月9日 12:19
hide
bbsi
#pragma comment(lib,"user32")
#pragma comment(lib,"gdi32")
#pragma comment(lib,"shell32")
#pragma comment(lib,"kernel32")
#include <tchar.h>
#include <windows.h>
#define ID_TIMER 1
#define STRMAXLEN 25 //一个显示列的最大长度
#define STRMINLEN 8 //一个显示列的最小长度
#pragma comment ( linker, "/subsystem:windows /entry:mainCRTStartup" ) //去除启动或退出程序时黑框
......................
阅读全部
|
apull
贴于 2020年8月9日 12:18
hide
bbsi
#include<stdio.h>
#define Height 10
int calculate(int Long,int Width);
int main()
{
int m_Long;
int m_Width;
int result;
printf("长方形的高度为: %d\n",Height);
......................
阅读全部
|
wzh20061008
贴于 2020年8月7日 22:10
hide
bbsi
#include<stdio.h>
#define Height 10
int calculate(int Long,int Width);
int main()
{
int m_Long;
int m_Width;
int result;
printf("长方形的高度为: %d\n",Height);
......................
阅读全部
|
wzh20061008
贴于 2020年8月7日 22:10
hide
bbsi
#include<stdio.h>
#define Height 10
int calculate(int Long,int Width);
int main()
{
int m_Long;
int m_Width;
int result;
printf("长方形的高度为: %d\n",Height);
......................
阅读全部
|
wzh20061008
贴于 2020年8月7日 22:09
hide
bbsi
#include <stdio.h>
int n;
int n;
int main()
{
n = 99;
printf("%p\n", &n);
return 0;
}
阅读全部
|
lin5161678
贴于 2020年8月7日 09:50
hide
bbsi