📄 demo_struct_01.cpp
字号:
//******************************
//** struct_01.cpp **
//******************************
# include <iostream.h>
struct Weather
{
double temp;
double wind;
};
void main()
{
Weather today;
today.temp=30.5;
today.wind=10.1;
cout<<"Temp="<<today.temp<<endl;
cout<<"Wind="<<today.wind<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -