📄 exe4.cpp
字号:
// Exe4.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream.h>
#include <string.h>
class person
{
int age;
char name[10];
public:
void init(int i,char *str)
{
age=i;
strcpy(name,str);
}
void display( )
{ cout<<name<<" is "<<age<<" years old.\n"; }
};
void main( )
{
person demo;
demo.init( 22,"Ji-hai-juan" );
demo.display( );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -