2018년 5월 29일 화요일

[C++] HW7 (Due: June, 7)

HW7

Please submit your HW to the report box in front of NC Lab, where located at office #318, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).


2018년 5월 18일 금요일

[Open Source S/W] New version of HW4 (Due: May 24)

HW4

Please submit your HW to the report box in front of NC Lab, where located at office #318, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).



2018년 5월 17일 목요일

[C++] HW6 (Due: May 24)

HW6

Please submit your HW to the report box in front of NC Lab, where located at office #318, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).

2018년 5월 11일 금요일

[C++] Examples


#include <iostream>
#include <string>

using namespace std;

class Package {

    public:
        string _SenderName;
        int    _fee;

        Package(string SenderName, int fee) {
            _SenderName = SenderName;
            _fee = fee;
        }
};

class ExpressPackage: public Package {

    public:
        int _extraFee;
    
        ExpressPackage(string SenderName, int fee, int extraFee)
            : Package(SenderName, fee)
        {
            _extraFee = extraFee;
        }
};

int main(int argc, const char * argv[]) {
    // insert code here...
    
    ExpressPackage DHL("Tom", 5, 10);
    
    cout << DHL._SenderName << endl;
    cout << DHL._fee << endl;
    cout << DHL._extraFee << endl;
    
    return 0;
}

2018년 5월 3일 목요일

[OpenSourceSW] HW3 (Due: May 10)

HW3

Please submit your HW to the report box in front of NC Lab, where located at office #318, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).

[C++] HW5 (Due: May 10)

HW5

Please submit your HW to the report box in front of NC Lab, where located at office #318, 자연대연구실험동 (Building# 313). Due Date: by 7:00 pm (or much earlier is possible).