• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: C/C++
  • 标签: C++;侯捷  

资源简介

C++面向对象高级编程代码资源,大牛侯捷主讲的C++课程参考代码,非常有参考价值

资源截图

代码片段和文件信息

#include 
#include “complex.h“

using namespace std;

ostream&
operator << (ostream& os const complex& x)
{
  return os << ‘(‘ << real (x) << ‘‘ << imag (x) << ‘)‘;
}

int main()
{
  complex c1(2 1);
  complex c2(4 0);

  cout << c1 << endl;
  cout << c2 << endl;
  
  cout << c1+c2 << endl;
  cout << c1-c2 << endl;
  cout << c1*c2 << endl;
  cout << c1 / 2 << endl;
  
  cout << conj(c1) << endl;
  cout << norm(c1) << endl;
  cout << polar(104) << endl;
  
  cout << (c1 += c2) << endl;
  
  cout << (c1 == c2) << endl;
  cout << (c1 != c2) << endl;
  cout << +c2 << endl;
  cout << -c2 << endl;
  
  cout << (c2 - 2) << endl;
  cout << (5 + c2) << endl;
  
  return 0;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        4047  2015-07-31 07:57  complex.h
     文件         730  2015-07-31 07:57  complex_test.cpp
     文件        1200  2015-07-31 07:57  string.h
     文件         278  2015-07-31 07:57  string_test.cpp

评论

共有 条评论

相关资源