结构体,结构体数组,结构体指针,结构体链表

 

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
struct stu{
  string name;
  int score;
  stu * next;
};
int main()
{
    stu st1;
    
//    st1.Name="张三";
//    st1.score=98;
//    cout<<st1.No<<' '<<st1.score;
//    stu students[4]={{"张三",50},{"李四",70},{"王五",60},{"赵六",50}};
//    for(int i=0;i<4;i++){
//    	cout<<students[i].name<<' '<<students[i].score<<endl;
//	}
	stu *p1=new stu;
	p1->name="张三";
	p1->score=50;
	cout<<p1->name<<' '<<p1->score<<endl;
	stu * head=new stu;
	stu * p=head;
	char startName='A';
	int startScore=90;
	for(int i=0;i<10;i++){
		stu *q=new stu;
		q->name=startName++;
		q->score=startScore++;
		p->next=q;
		p=q;
	}
	p->next=NULL;
	stu * start=head->next;
	while(start){
		cout<<start->name<<' '<<start->score<<endl;
		start=start->next;
	}
//	for()
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值