猿问

printX和Y函数调用缺少参数列表?

#include <stdlib.h>
#include <string.h>
#include<iostream>
using namespace std;
class Coordinate
{
public:
    int x;
    int y;
    void printX()
    {
        cout << x << endl;
    }
    void printY()
    {
        cout << y << endl;
    }
};
int main(void)
{
    Coordinate coor;
    coor.x = 20;
    coor.y = 30;
    coor.printX;
    coor.printY;
    system("pause");
    return 0;
}


qz_zy
浏览 1419回答 1
1回答
随时随地看视频慕课网APP
我要回答