📄 cpp2.cpp
字号:
#include<iostream>
using namespace std;
//--------------------
class Animal{
int itsWeight;
int itsAge;
public:
void set(int x,int y){itsWeight=x;itsAge=y;}
void print(){cout<<itsWeight<<" "<<itsAge<<endl;}
};
//--------------------
void setValue(Animal& ta,int tw,int tn)
{
ta.set(tw,tn);
}
//--------------------
int main(){
Animal peppy;
setValue(peppy,7,9);
peppy.print();
return 1;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -