struct,1.0,struct的用法

​
#include<bits/stdc++.h>
using namespace std;
struct fin
{
    int year;
    string month;
    int day;

};
int main()
{
    fin p=
    {
        2022,
        "December",
        31
    };
    cout<<"This year is "<<p.year<<",today is "<<p.month<<" "<<p.day<<"th.\n";
	return 0;
}

​

struct,1.0,struct的用法

这就是struct的用法,相信大家可以自己理解! 

上一篇:连接终止协议(四次挥手)


下一篇:TCP四次挥手