c++第二次作业

1.正整数类

  1. #include<iostream>    
  2. using namespace std;    
  3. class NaturalNumber    
  4. {  
  5. private:    
  6.     int n;     
  7. public:    
  8.     void setValue (int x);    
  9.     int getValue();      
  10.     bool isPrime();      
  11.     void printFactor();      
  12.     bool isPerfect();     
  13.     bool isReverse(int x);    
  14.     bool isDaffodil(int x);    
  15.     void printDaffodils();  
  16. };  
  17. void NaturalNumber::setValue(int x)  
  18. {  
  19.     n=x;  
  20.     while(n<0)  
  21.     {  
  22.         cout<<"输入一个正整数:"<<endl;  
  23.         cin>>n;  
  24.     }  
  25. }    
  26. int NaturalNumber::getValue()  
  27. {  
  28.     return n;  
  29. }  
  30. bool NaturalNumber::isPrime()  
  31. {  
  32.     int i,a=0;  
  33.     for(i=2;i<=(n+1)/2;i++)  
  34.     {  
  35.         if(n%i==0)  
  36.             a++;  
  37.         if(a==0)  
  38.             return true;  
  39.         else  
  40.             return false;  
  41.     }  
  42. }  
  43. void NaturalNumber::printFactor()  
  44. {  
  45.     int i;  
  46.     for(i=1;i<=n;i++)  
  47.     {  
  48.         if(n%i==0)  
  49.             cout<<i<<" ";  
  50.     }  
  51.     cout<<endl;  
  52. }  
  53. bool NaturalNumber::isPerfect()  
  54. {  
  55.     int i,s=0;  
  56.     for(i=1;i<n;i++)  
  57.     {  
  58.         if(n%i==0)  
  59.             s+=i;  
  60.     }  
  61.     if(s==n)  
  62.         return true;  
  63.     else  
  64.         return false;  
  65. }  
  66. bool NaturalNumber::isReverse(int x)  
  67. {  
  68.     int a[10],i,s=1,k,c=1;  
  69.     for(i=0;n!=0;i++)  
  70.     {  
  71.         a[i]=n%10;  
  72.         n=n/10;  
  73.         c=c*10;  
  74.     }  
  75.     k=i;  
  76.     c=c/10;  
  77.     for(i=0;i<k;i++)  
  78.     {  
  79.          s=a[i]*c;  
  80.          c=c/10;  
  81.     }  
  82.     if(s==x)  
  83.         return true;  
  84.     else   
  85.         return false;  
  86. }  
  87. bool NaturalNumber::isDaffodil(int x) //判断形式参数x是否是水仙花数。水仙花数的各位数字立方和等于该数,如153=1*1*1+5*5*5+3*3*3   
  88. {  
  89.      int m,a[10],i,j,s=0;  
  90.      m=x;  
  91.      for(i=1;n!=0;i++)  
  92.      {  
  93.          a[i]=n%10;  
  94.          n=n/10;  
  95.      }  
  96.      j=i;  
  97.      for(i=1;i<=j;i++)  
  98.      {  
  99.          s=s+a[i]*a[i]*a[i];  
  100.      }  
  101.      if(s==x)  
  102.          return true;  
  103.      else  
  104.          return false;  
  105. }  
  106. void NaturalNumber::printDaffodils()//显示所有大于1,且小于数据成员n的水仙花数;  
  107. {  
  108.      int i;  
  109.      for(i=2;i<n;i++)  
  110.      {  
  111.          int m;  
  112.          m=i;  
  113.          int a[10],j,k,s=0;  
  114.          for(j=1;i!=0;j++)  
  115.          {  
  116.              a[j]=i%10;  
  117.              i=i/10;  
  118.          }  
  119.          k=j;  
  120.          for(j=1;j<=k;j++)  
  121.          {  
  122.              s=s+a[j]*a[j]*a[j];  
  123.          }  
  124.          if(s==m)  
  125.              cout<<m<<" ";  
  126.      }  
  127.      cout<<endl;  
  128. }  
  129. void main(void)    
  130. {    
  131.     NaturalNumber nn;   //定义类的一个实例(对象)    
  132.     nn.setValue (6);    
  133.     cout<<nn.getValue()<<(nn.isPrime()?"是":"不是")<<"素数" <<endl;    
  134.     nn.setValue (37);     
  135.     cout<<nn.getValue()<<(nn.isPrime()?"是":"不是")<<"素数" <<endl;     
  136.     nn.setValue (84);     
  137.     cout<<nn.getValue()<<"的因子有:";    
  138.     nn.printFactor();   
  139.       
  140.     nn.setValue (6);    
  141.     cout<<nn.getValue()<<(nn.isPerfect()?"是":"不是")<<"完全数"<<endl;   
  142.     int z;    
  143.     nn.setValue(123);    
  144.     z=nn.getValue();    
  145.     cout<<(nn.isReverse(321)?"是":"不是")<<"n="<<z<<"的逆向数"<<endl;   
  146.     cout<<(nn.isDaffodil(153)?"是":"不是")<<"水仙花树"<<endl;   
  147.     nn.setValue(1000);    
  148.     cout<<"大于1且小于数据成员"<<"n="<<nn.getValue()<<"的水仙花数:";    
  149.     nn.printDaffodils();   
  150. }  
c++第二次作业_第1张图片

2.分数类

#include<iostream>    
#include<string>    
using namespace std;    
class CFraction    
{    
private:    
    int nume;  // 分子    
    int deno;  // 分母    
public:    
    CFraction(int nu=0,int de=1);   //构造函数,初始化用    
    void set(int nu=0,int de=1);    //置值,改变值时用    
    void input();               //按照"nu/de"的格式,如"5/2"的形式输入    
    void simplify();            //化简(使分子分母没有公因子)    
    void amplify(int n);        //放大n倍,如2/3放大5倍为10/3    
    void output(int style=0);   //输出:以8/6为例,style为0时,原样输出8/6;    
                            //style为1时,输出化简后形式4/3;    
                        //style为2时,输出1(1/3)形式,表示一又三分之一;    
                            //style为3时,用小数形式输出,如1.3333;    
                            //默认方式0    
};  
  
CFraction::CFraction(int nu,int de)  
{  
    nume=nu;  
    deno=de;  
}  
  
void CFraction::set(int nu,int de)  
{  
    nume=nu;  
    deno=de;  
}  
  
void CFraction::input()  
{  
    char a;  
    cin>>nume>>a>>deno;  
}  
  
void CFraction::output(int style)  
{  
    int b;  
    float c;  
    if(style==0)  
    cout<<nume<<"/"<<deno;  
    else if(style==1)  
    {  
        simplify();  
        cout<<nume<<"/"<<deno;  
    }  
    else if(style==2)  
    {  
        simplify();  
        b=nume/deno;  
        cout<<b<<"("<<nume<<"/"<<deno<<")";  
    }  
    else if(style==3)   
    {  
        c=nume*1.0/deno;  
        cout<<c;  
    }  
}  
  
void CFraction::simplify()    
{    
    int i,max;    
    if(nume>deno)  
    max=nume;  
    else max=deno;  
    for(i=2;i<max;i++)  
    if(nume%i==0&&deno%i==0)  
    {  
        nume/=i;deno/=i;  
    }  
}  
  
void CFraction::amplify(int n)//放大n倍,如2/3放大5倍为10/3  
{  
    nume*=n;  
    simplify();  
}  
  
int main()  
{  
    CFraction c1(0,1);  
    cout<<"关于c1:"<<endl<<"原样:";  
    c1.output(0);  
      
    cout<<endl<<"改变c1:"<<endl<<"原样:";  
    c1.set(2,7);  
      
    cout<<"输入c1:"<<endl<<"输入分数(m/n):";  
    c1.input();  
    cout<<"原样:";  
    c1.output(0);  
      
    CFraction c2(8,6);  
    cout<<endl<<"关于c2:"<<endl<<"原样:";  
    c2.output(0);  
      
    cout<<endl<<"化简形式:";  
    c2.output(1);  
      
    cout<<endl<<"带分数形式:";  
    c2.output(2);  
      
    cout<<endl<<"近似值:";  
    c2.output(3);  
      
    cout<<endl<<"原样:";  
    c2.set(8,6);  
    c2.output(0);  
      
    cout<<endl<<"将c2化简:"<<endl<<"原样:";  
    c2.output(1);  
      
    cout<<endl<<"将c2放大倍:"<<endl<<"原样:";  
    c2.amplify(5);  
    c2.output(0);  
    cout<<endl<<"化简形式:";  
    c2.output(1);  
    cout<<endl;  
    return 0;     
}  

c++第二次作业_第2张图片


你可能感兴趣的:(c++第二次作业)