demo_struct_01.cpp

来自「对于一个初涉VC++的人来书」· C++ 代码 · 共 22 行

CPP
22
字号
//******************************
//**       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 + =
减小字号Ctrl + -
显示快捷键?