📄 outdata.cpp
字号:
//outdata.cpp
#include <iostream.h>
#include <conio.h>
char ch[5]={'A','L','L','O','Y'};
void outch();
void main()
{ outch();
getch();
}
//outch()
void outch()
{ for (int i=0;i<5;i++)
cout << ch[i];
cout<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -