程序填空_4

2022/3/6 12:45:21

本文主要是介绍程序填空_4,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

源程序:

#include <iostream>
using namespace std;

class toy
{
private:
int num,price;
public:
toy(int q,int p)
{
num=q;
price=p;
}
int get_num()
{
return num;
}
int get_price() //程序填空
{
return price;
}
};

int main()
{
toy op[2][2]={toy(10,20),toy(30,48),toy(50,68),toy(70,80)};
int i;
for(i=0;i<2;i++)
for(int j=0;j<2;j++) //程序填空
{
cout<<op[i][j].get_num()<<",";
cout<<op[i][j].get_price()<<"\n";
}
return 0;
}

 结果:

 



这篇关于程序填空_4的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程