https://rentry.org/PPP2_p142b

// Code derived from Stroustrup's PPP2 book
// § 5.5.1 The caller deals with errors
//  -and beginning on p 142

#include <iostream>
#include <stdexcept>

using std::cout;
using std::runtime_error;

// error() simply disguises throws
void error(const char* s) { throw runtime_error(s); }

// calculate area of a rectangle
int area(int length, int width) { return length * width; }

// calculate area within frame
int framed_area(int x, int y) { return area(x - 2, y - 2); }

int main()
{
  int x = 0;  // please test out some positive values here, too
  int y = 0;  //

  if (x <= 0 || y <= 0)  // || means “or”
    error("non-positive area() argument");

  int area1 = area(x, y);

  cout << x << '\n'  //
       << y << '\n'  //
       << area1 << '\n';
}

build & run:

g++ -std=c++20 -O2 -Wall -pedantic ./ch_05/main_p142b.cpp && ./a.out

PrevUpNext

Edit
Pub: 21 Feb 2023 04:29 UTC
Edit: 29 Apr 2023 09:09 UTC
Views: 447