1.cpp

来自「在matlab中实现ofdm中子载波分配,希望对大家有用!」· C++ 代码 · 共 28 行

CPP
28
字号
#include<iostream.h>
#include<string.h>

#include "2.h"
#include "3.h"


void main(void)
{   
	student *head;
    head=creat();
	list(head);
    if(head!=0)
	{
		cout<<"output:"<<endl;
		const student *p;
		p=head;
		while(p!=0)
		{
			cout<<p->name<<endl<<p->sn<<endl<<p->cs<<endl;
			p=p->next;
		}
	}
	cout<<'\n';
}


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?