Page 146 - MODUL ALGORTIMA DAN PEMROGRAMAN
P. 146

KODE PROGRAM BAHASA C
                  #include <stdio.h>

                  typedef struct Rectangle {
                      int width;
                      int height;
                  } Rectangle;

                  void set_values(Rectangle *rect, int x, int y) {
                      rect->width = x;
                      rect->height = y;
                  }

                  int area(Rectangle rect) {
                      return rect.width * rect.height;
                  }

                  int main() {
                      Rectangle rect;
                      set_values(&rect, 3, 4);
                      int area_value = area(rect);
                      printf("Area: %d\n", area_value);

                      return 0;
                  }

                                               KODE PROGRAM BAHASA C++
                  #include <iostream>
                  using namespace std;

                  class Rectangle {
                      int width, height;
                    public:
                      void set_values (int,int);
                      int area() {return width*height;}
                  };

                  void Rectangle::set_values (int x, int y) {
                    width = x;
                    height = y;
                  }

                  int main () {
                    Rectangle rect;
                    rect.set_values (3,4);
                    cout << "area: " << rect.area();
                    return 0;
                  }

                  Output:

                  area: 12









                                                                                                         123
   141   142   143   144   145   146   147   148   149   150   151