坐等定義學生結構體型別其成員包括學號

2021-04-28 17:32:07 字數 847 閱讀 5455

1樓:娛樂小八卦啊

**如下:

#include

#include

struct student ;

void fun( struct student  *b)

main()

;int  i;

printf("\n\nthe original data :\n");

printf("\nno: %ld  name: %s\nscores:  ",t.sno, t.name);

for (i=0; i<3; i++)  printf("%6.2f ", t.score[i]);

printf("\n");

fun(&t);

printf("\nthe data after modified :\n");

printf("\nno: %ld  name: %s\nscores:  ",t.sno, t.name);

for (i=0; i<3; i++)  printf("%6.2f ", t.score[i]);

printf("\n");

}擴充套件資料

結構體內標的定義方式:

結構體,透明表區,data element,domain

透明表是對一個物理表的邏輯描述,透明表裡有許多欄位,並且定義某些欄位為 primary key,欄位裡又包含 data element,用來描述語言屬性和技術屬性。data element 中又包含 domain,它是定義資料型別和欄位長度。

結構體一般是用來定義一個結構變數,有臨時資料的儲存,沒有 primary key,結構體裡包含 component 而不是 field

要求用C編寫定義學生結構體,包括學號,性別,數學英

include using namespace std struct student void student set void student showlist 用c語言寫 定義一個學生結構體 包含姓名,學號,語文,數學,外語,總分 定義一個學生結構體陣列。include struct stude...

編輯c語言程式,定義表示分數的結構體型別,並求兩個分數相加之和

順便說明一下,由於我用的是win tc編譯器,getch 只是接受一個字元起暫停一下的作用,include include typedef struct fenshu fenshu convert fenshu tmp return tmp fenshu add fenshu a,fenshu b ...

編寫java程式,定義學生類student,屬性包含

public class student public student string name,string age,string gender public string getname public void setname string name public string getage pu...