⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 1.cpp

📁 在matlab中实现ofdm中子载波分配,希望对大家有用!
💻 CPP
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -