现在有一个手机类phone与我的手机类myphone。 在现有代码的基础上,使用友元类,让程序能够正常运行。
输入描述:
输入一个整数,表示价格。
输出描述:
输出价格。
示例1
输入
1000
输出
1000
加载中...
#include
using namespace std; class phone{ // write your code here...... private: int price; public: phone(int x){ price=x; } }; class myphone{ private: phone a; public: myphone(int x):a(x){ } int getprice(){ return a.price; } }; int main(){ int p; cin>>p; myphone a(p); cout<
1000
1000