1樓:手機使用者
int stunumber;char name;int score;}stu; 追問du: 一個結構體變數zhistumax(存放最高分學生的信dao息)版一個結構體變數stumin存放最低分權學生的資訊)一個整型變數i(用於迴圈) 回答: struct info s[100]; struct info stumax; struct info stumin; int i,min=0,max=0; for(i=1;i<100;i++) stumax.
stunumber=s[max].stunumber; stumax.score=s[max].
score; strcpy(stumax.name,s[max].score); 補充:
stumin.stunumber=s[min].stunumber;
定義一個結構體變數stu,成員包括學號,姓名,性別,成績,定義一個指標變數p指向該結構體變數stu
2樓:e·小澤
#include
#include
using namespace std;
int main( )
;student stu;
student *p=&stu;
stu.num=10001;
stu.name="kyo";
stu.***='f';
stu.score=89.5;
cout return 0;} 定義一個描述學生的結構體型別student,含有學號num、姓名name、性別***、成績score幾個分量,再定義屬於這 3樓:匿名使用者 定義struct student 變數struct student stu1,stu2; 4樓:匿名使用者 struct student ; struct student stu1,stu2; 5樓:煙光殘 #include struct student stu1,stu2; 例如有a,b兩個結構體,a中有b 在main中需要先初始化個b,完成b之後,然後呼叫a.b,這樣就可以完成了!如果直接呼叫a的話,有可能溢位 沒賦具體值時都給null就好 struct a a struct a malloc sizeof struct a memset a,0,sizeof str... include struct mi ddle main printf 姓名 t年齡 t成績 n for int i 0 i 5 i 需要儲存什麼資訊,能不能把所要儲存的資訊清楚的說出來。這樣在定義結構體的時候版可以確定。權 include stdio.h int main student 10 pr... 虛擬函式可以實現多型,過載不行 多型就是用同一個呼叫方式實現不同呼叫 比如,你定義了一個名為形狀的父類,裡面有一個計算面積的虛擬函式。並且派生了兩個子類,一個是圓,一個是方形,各自實現了自己的計算面積函式 這樣,你想要計算面積的時候,並不需要考慮圓和方形的區別。只需要 父類.計算面積 這樣呼叫,編譯...定義了結構體,結構體有個成員變數是指標型別,而這個變數有是結構體,請問怎麼對這個指標初始化
求C語言答案。定義學生結構體,包含學生姓名,學號,性別
c中類的成員函式重定義和虛擬函式有什麼區別