首页 > 编程语言 > 详细

C++学习,实验四

时间:2018-04-22 23:29:10      阅读:187      评论:0      收藏:0      [点我收藏+]

一,draw()函数

技术分享图片
void graph::draw() {
    int i,j;
    for(i=1;i<=size;i++)
    {
        for(j=1;j<=size-i;j++)
        {
            cout<<" ";
            
        }
        for(j=1;j<=2*i-1;j++)
        {
            cout<<symbol;
        }
        for(j=1;j<=size-i;j++)
        {
            cout<<" ";
        }
        cout<<endl;
    }
draw()函数

 

实验截图

技术分享图片

 

程序运行环境: DevC++5.10

 

二,fraction函数

技术分享图片
class Fraction{
    public:
        Fraction();
        Fraction(int a);
        Fraction(int a,int b);
        void show();
        void add(Fraction &f);
        void sub(Fraction &f);
        void mul(Fraction &f);
        void div(Fraction &f);
        int compare(Fraction &f);
    private:
        int top;
        int bottom;
};
fraction.h
技术分享图片
#include<iostream>
#include"fraction.h"
using namespace std;
Fraction::Fraction()
{
    top=0;
    bottom=1;
}
Fraction::Fraction(int a)
{
    top=a;
    bottom=1;
    
}
Fraction::Fraction(int a,int b)
{
    top=a;
    bottom=b;
}
void Fraction::add(Fraction &f)
{
    top=f.top*bottom+top*f.bottom;
    bottom=bottom*f.bottom;
    show();
}
void Fraction::sub(Fraction &f)
{
    top=top*f.bottom-f.top*bottom;
    bottom=bottom*f.bottom;
    show();
}
void Fraction::mul(Fraction &f)
{
    top=top*f.top;
    bottom=bottom*f.bottom;
    show();
}
void Fraction::div(Fraction &f)
{
    top=top*f.bottom;
    bottom=bottom*f.top;
    show();
}
int Fraction::compare(Fraction &f)
{
    int a,b;
    a=top*f.bottom-f.top*bottom;
    if(a>0)
    {
        b=1;
    }
    else if(a=0)
    {
        b=2;
    }
    else
    {
        b=3;
    }
    switch(b)
    {
        case 1:
            cout<<top<<"/"<<bottom<<">"<<f.top<<"/"<<f.bottom;
            break;
        case 2:
            cout<<top<<"/"<<bottom<<"="<<f.top<<"/"<<f.bottom;
            break;
        case 3:
            cout<<top<<"/"<<bottom<<"<"<<f.top<<"/"<<f.bottom;
            break;
        default:
            cout<<"number of b is wrong";
            
    }
}
void Fraction::show()
{
    cout<<top<<"/"<<bottom<<endl;
 } 
fraction.cpp
技术分享图片
#include <iostream>
#include"fraction.h"
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main() 
{
    Fraction a;
    Fraction b1(3,4);
    Fraction c(5);
    Fraction d(5,6);
    Fraction b2(3,4);
    Fraction b3(3,4);
    Fraction b4(3,4);
    Fraction b5(3,4);
    a.show();
    b1.show();
    c.show();
    b1.add(d);
    b2.sub(d);
    b3.mul(d);
    b4.div(d);
    b5.compare(d);
    return 0;
}
main.cpp

 

运行截图

技术分享图片

 

程序运行环境: DevC++5.10

C++学习,实验四

原文:https://www.cnblogs.com/769869657h/p/8909497.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!