第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

靜態(tài)鏈表錯(cuò)哪了?

靜態(tài)鏈表錯(cuò)哪了?

C
溯源1 2017-01-12 10:15:53
#include "stdio.h"?struct student? ? {? ? long num;? ? float score;? ? struct student * next;? ? };void main(){? ? struct student stu1,stu2,stu3;? ? struct studentn * head,*p;? ? stu1.num=001;stu1.score=56;? ? stu1.num=002;stu1.score=77;? ? stu1.num=003;stu1.score=99;? ? head=&stu1;? ? stu1.next=&stu2;? ? ?stu2.next=&stu3;? ? ?stu3.next=NULL;? ? p=head;? ? while(p!=NULL)? ? {? ? printf("%ld,%5.1f\n",p->num,p->score);? ? p=p->next;? ? }? ?}
查看完整描述

1 回答

已采納
?
豈可奈何

TA貢獻(xiàn)5條經(jīng)驗(yàn) 獲得超3個(gè)贊

定義結(jié)構(gòu)體指針時(shí) ?student ?寫成 studentn

定義成員變量是,全部是 ?stu1的,沒有stu2和stu3


程序:

#include <stdio.h>

?struct student

? ? {

? ? long num;

? ? float score;

? ? struct student * next;

? ? };

void main()

{

? ? struct student stu1,stu2,stu3;

? ? struct student * head,*p;

? ? stu1.num=001;stu1.score=56;

? ? stu2.num=002;stu2.score=77;

? ? stu3.num=003;stu3.score=99;

? ? head=&stu1;

? ? stu1.next=&stu2;

? ? stu2.next=&stu3;

? ? stu3.next=NULL;

? ? p=head;

? ? while(p!=NULL)

? ? {

printf("%ld,%5.1f\n",p->num,p->score);

p=p->next;

? ? }

}



查看完整回答
1 反對(duì) 回復(fù) 2017-01-13
  • 1 回答
  • 0 關(guān)注
  • 1086 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)