プログラムするcを使用して例は動的に構造の学生の名前および等級を貯えるために配列を割振ったものだ。 等級は昇順のユーザーに戻ってそれから表示される。

Files Recovery Software
連絡先の詳細 顧客サポート ダウンロードのデモ 製品  

 
 

次の例は動的に構造の学生の名前および等級を貯えるために配列を割振ったものだ。 等級は昇順のユーザーに戻ってそれから表示される。

#include <string.h>
#include <malloc.h>

struct student
{
char *name;
int grade;
};

void swap(struct student *x, struct student *y);

int main()
{
struct student *group;
char buffer[80];
int spurious;
int inner, outer;
int counter, numStudents;

printf("How many students are there in the group: ");
scanf("%d", &numStudents);

group = (struct student *)malloc(numStudents *
sizeof(struct student));

for (counter=0; counter<numStudents; counter++)
{
spurious = getchar();

printf("Enter the name of the student: ");
gets(buffer);
group[counter].name = (char *)malloc((strlen(buffer)+1) * sizeof(char));
strcpy(group[counter].name, buffer);

printf("Enter grade: ");
scanf("%d", &group[counter].grade);
}

for (outer=0; outer<numStudents; outer++)
for (inner=0; inner<outer; inner++)
if (group[outer].grade <
group[inner].grade)

swap(&group[outer], &group[inner]);

puts("The group in ascending order of grades ...");

for (counter=0; counter<numStudents; counter++)

printf("%s achieved Grade %d \n”,
group[counter].name,
group[counter].grade);

return 0;
}

void swap(struct student *x, struct student *y)
{
struct student temp;

temp.name = (char *)malloc((strlen(x->name)+1) *
sizeof(char));

strcpy(temp.name, x->name);
temp.grade = x->grade;

x->grade = y->grade;
x->name = (char *)malloc((strlen(y->name)+1) *
sizeof(char));
strcpy(x->name, y->name);
y->grade = temp.grade;
y->name = (char *)malloc((strlen(temp.name)+1) *
sizeof(char));
strcpy(y->name, temp.name);
}

 

出力の実行は次の通りある:

How many students are there in the group: 4
Enter the name of the student: Anuraaj
Enter grade: 7
Enter the name of the student: Honey
Enter grade: 2
Enter the name of the student: Meetushi
Enter grade: 1
Enter the name of the student: Deepti
Enter grade: 4
The group in ascending order of grades ...

Meetushi achieved Grade 1
Honey achieved Grade 2
Deepti achieved Grade 4
Anuraaj achieved Grade 7

 


Previous page

page 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18

 
 

page 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34

 
 

page 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50

 
 

page 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60

Next page
 
 
データ回復図書
 
章1 データ回復の概観
章2 ハードディスクの導入
章3 ディスクおよびosへの論理的なアプローチ
章4 ナンバーシステム
章5 cのプログラミングの導入
章6 コンピュータ基本原則への紹介
章7 必要なdosは命じる
章8 ディスクBIOSは作用し、cとの処理を中断する
章9 大きいハードディスクの処理
章10 買収されたフロッピィからのデータ回復
章11 バックアップの作成
章12 プログラミングを用いる読み、変更MBR
章13 プログラミングを用いる読み、変更DBR
章14 「未加工ファイル」回復のためのプログラミング
章15 データワイパーのためのプログラミング
章16 ディスクのためのより多くの実用性の開発
付録 データ回復言葉の語集
 
 
Pro Data Doctor

製品

連絡先の詳細

顧客サポート

ダウンロードのデモ

契約条件

 
Pro Data Doctor