1. 程式人生 > 其它 >C 語言程式(二)

C 語言程式(二)

1、/*程式設計程式:完成sort函式,實現10個任意整數資料的升序輸出。

輸入資料:10 9 8 7 6 5 4 3 2 1

輸出資料:the result data is :1 2 3 4 5 6 7 8 9 10

*/

#include<stdio.h>

int main()

{

 int a[10],i;

 void sort(int *,int);

 for(i=0;i<10;i++)

  scanf("%d",&a[i]);

 sort(a,10);

 printf("\nthe result data is :");

 for(i=0;i<10;i++)

 printf("%d ",a[i]);

 return 0;

void sort(int *p,int n)

{

 int i,j,tmp;

  for(i=0;i<n-1;i++)

  for(j=i+1;j<n;j++)

   if (p[i]>p[j])

   {tmp=p[i];p[i]=p[j];p[j]=tmp;}

}

2、/*編寫程式:完成connect_string函式,實現字串的連線功能。

輸入資料:

 I am a Chinese,

輸出資料:

    I am a Chinese,I love my motherland!*/

#include<stdio.h>

int main()

{

 char a[100],b[100]="I love my motherland!";

 void connect_string(char *,char *);

 gets(a);

    connect_string(a,b);     

 puts(a);

 return 0;

}

 void connect_string(char *p,char *q)

 {  

  char *t;

  t=p;

  while (*t!='\0') t++;

  for(;*q!='\0';q++)

   *t++=*q;

  *t='\0';

 }

3、/*編寫函式,統計任意一個字串中哪個數字字元出現頻率最高。

輸入資料:abc12345689def9876ghi981jk8

輸出資料:出現頻率最高的數字字元是:8

*/

#include <stdio.h>

#include <string.h>

char count(char *st)

{

 int j=0,max,k;

 int tt[100]={0};

 for(;*st!='\0';st++)

  if ((*st>='0')&&(*st<='9'))

   tt[*st-48]++;

 max=tt[0];k=0;

 for(j=1;j<10;j++)

  if (max<tt[j]) {max=tt[j];k=j;}

 return k+48;

}

int main()

{

 char ss[80],ch;

 gets(ss);

 ch=count(ss);

    printf("出現頻率最高的數字字元是:");

 printf("%c\n",ch);

 return 0;

}

4、/*編寫函式,統計任意一個密碼電文中英文字母出現了多少次。

輸入資料:abc12345689def9876ghi981jk8

輸出資料:11

*/

#include <stdio.h>

#include <string.h>

int count(char *s)

{

 int cnt=0;

 for(;*s!='\0';s++)

  if ((*s>='a')&&(*s<='z')||(*s>='A')&&(*s<='Z'))

   cnt++;

 return cnt;

}

int main()

{

 char ss[80];

 gets(ss);

    printf("英文字母出現的次數為:\n");

 printf("%d",count(ss));

 printf("\n");

 return 0;

}

5、/*完成crypt函式,實現加密並輸出功能。

加密規則:字串中所有小寫英文字母迴圈加密。如a到b,b到c,…,z到a。

輸入資料:zy have a little apple!

輸出資料:az ibwf  b mjuumf  bqqmf!

*/

#include <stdio.h>

#include <string.h>

void crypt(char *s)

{

 while (*s)

 {

  if (*s>='a'&& *s<='z')

   if (*s=='z') *s='a';

   else

    *s=*s+1;

  s++;

 }

}

int main()

{

 char t1[80];

 gets(t1);

 crypt(t1);

 printf("\nthe resulted data is :%s",t1);

 printf("\n");

 return 0;

}

6、/*編寫程式:完成fun函式,實現將任意一個字串中的原音字母抽取出來組成一個新的字串並輸出。

輸入資料:I am a teacher,I am 39 years old.

輸出資料:IaaeaeIaeao

*/

#include<stdio.h>

void fun(char a[],char b[])

 {

  int i,j;

  for(i=0,j=0;a[i]!='\0';i++)

   if (a[i]=='a'||a[i]=='A'||a[i]=='e'||a[i]=='E'||a[i]=='i'||a[i]=='I'||a[i]=='o'||a[i]=='O'||a[i]=='u'||a[i]=='U')

    b[j++]=a[i];

 }

int main()

{   char a[80],b[80]={0};

 gets(a);

 fun(a,b);

 puts(b);

 return 0;

}

7、/*編寫函式:移動字串中的內容,移動規則:把1到第m個字元,平移到字串的最後,把第m+1到最後的字元移到字串的前部。

輸入資料:sidamingbu

          4

輸出資料:mingbusida

*/

 

#include <stdio.h>

#include <string.h>

#define N 80

void fun1(char *w)

{

 int i;char t;

 t=w[0];

 for(i=0;i<(int)strlen(w)-1;i++)

  w[i]=w[i+1];

 w[strlen(w)-1]=t;

}

void fun(char *w,int m)

{int i;

 for(i=1;i<=m;i++)

 fun1(w);

}

int main()

{

    char a[N];

 int m;

    gets(a);

 printf("the original string:\n");

 puts(a);

 printf("\nenter m:");

 scanf("%d",&m);

 fun(a,m);

 printf("\nthe string after moving:\n");

 puts(a);

    printf("\n");

 return 0;

}

8、/*利用遞迴方法求10個任意整數實數的最大值。

輸入資料:1  2  3  4  5  6  7  8  10  9

輸出資料:10

*/

#include<stdio.h>

void main()

{

int i,a[10];

int aver(int [],int);

for(i=0;i<10;i++)

scanf("%d",&a[i]);

printf("%d\n",aver(a,10));

}

int aver(int a[],int n)

{

 int c;

 if (n==1) c=a[0];

 else

 {

  if (aver(a,n-1)>a[n-1])

   c=aver(a,n-1);

  else

   c=a[n-1];

 }

return c;

}

9、/*程式設計:完成avgint函式,利用遞迴法求一批資料的平均值。

輸入資料:1 2 3 15 5 20 7 8 45 10

輸出資料:11.60

*/

#include <stdio.h>

float avgint(int a[],int n)

{

 float tt;

 if (n==1) tt=a[0];

 else

 {

  float mm;

  mm=avgint(a,n-1);

  tt=(mm*(n-1)+a[n-1])/n;

 }

return tt;

}

int main()

{

 int a[10],i;

 for(i=0;i<10;i++)

  scanf("%d",&a[i]);

 printf("the result data is :\n");

 printf("%.2f\n",avgint(a,10));

 return 0;

}

10、/*程式設計:完成avgint函式,利用遞迴法求一批資料的平均值。

輸入資料:1 2 3 15 5 20 7 8 45 10

輸出資料:11.60

*/

#include <stdio.h>

float avgint(int a[],int n)

{

 float tt;

 if (n==1) tt=a[0];

 else

 {

  float mm;

  mm=avgint(a,n-1);

  tt=(mm*(n-1)+a[n-1])/n;

 }

return tt;

}

int main()

{

 int a[10],i;

 for(i=0;i<10;i++)

  scanf("%d",&a[i]);

 printf("the result data is :\n");

 printf("%.2f\n",avgint(a,10));

 return 0;

}

11、/*編寫函式,將字串中下標為偶數的字元按ASCII碼升序排列,並將排序後下標為偶數的字元在主函式中輸出。

輸入資料:baawrskjghzlicda

輸出資料:abdgikrz

*/

#include <stdio.h>

void fun(char st[],char tt[])

{

 int i,j=0,k;

 char ch;

 for(i=0;st[i]!='\0';i++)  //把奇數位置上的所有字元取出來

  if (i%2==0) tt[j++]=st[i];

 tt[j]=0;

  //升序排列

 for(i=0;i<j-1;i++)

  for(k=i+1;k<j;k++)

   if (tt[i]>tt[k]) {ch=tt[i];tt[i]=tt[k];tt[k]=ch;}

}

int main()

{

 char st[80],tt[80];

 printf("please input string:\n");

 gets(st);

 fun(st,tt);

 printf("the result data is :\n");

 puts(tt);

 return 0;

}

12、/*程式設計:完成fun函式,實現將s所指字串中的所有數字字元移到所有非數字字元之後,並保持數字字元和非數字字串原有的先後次序。

輸入資料:def35adh3kjsdf7

輸出資料:defadhkjsdf3537

*/

#include <stdio.h>

void fun(char s[])

{

 int i,j=0,k=0;

 char t1[80],t2[80];

 for(i=0;s[i]!='\0';i++)

  if (s[i]>='0'&&s[i]<='9')

  { t2[j]=s[i];j++; }

  else t1[k++]=s[i];

  t2[j]=0;t1[k]=0;

  for(i=0;i<k;i++) s[i]=t1[i];

  for(i=0;i<j;i++)

   s[k+i]=t2[i];

}

int main()

{

    char s[80];

 printf("please input a string:\n");

 gets(s);

 fun(s);

 printf("\nthe result is :%s\n",s);

 return 0;

}

13、/*

程式設計:完成fun函式,除了尾部的*和前導*外,將字串中的其餘*號全部刪除,形參p已經指向字串中最後的一個字母,不得使用c語言提供的字串函式。前導和尾部的*號不刪除.

輸入資料:*******AS*BHH**G*******

輸出資料:*******ASBHHG*******

*/

#include <stdio.h>

void fun(char *a,char *h,char *p)

{

 a=h;

 for(;h<p;h++)

  if (*h!='*') *(a++)=*h;

 for(;*h!='\0';h++)

  *(a++)=*h;

 *a='\0';

}

int main()

{

 char s[81],*t,*f;

 printf("Enter a string:\n");

 gets(s);

 t=f=s;

 while (*t) t++;

 t--;

 while (*t=='*') t--;

 while (*f=='*') f++;

 fun(s,f,t);

 printf("the string after deleted:\n");

 puts(s);

 printf("\n");

 return 0;

}

14、/*編寫函式:將ss所指字串中所有下標為偶數位置上的字母轉換為大寫(若該位置上不是字母,則不轉換)。

輸入資料:I love my motherland!

輸出資料:I LoVe mY MoThErLaNd!

*/

#include <stdio.h>

#include <string.h>

#define MAX 100

void fun(char *ss)

{

 char *t;

 t=ss;

 while (*t)

 {if ((*t>='a')&&(*t<='z')) *t=*t-32;

 t=t+2;}    

}

int main()

{

 char tt[51];

 printf("input a string within 50 characters:\n");

 gets(tt);

 fun(tt);

 printf("%s\n",tt);

 return 0;

}

15、/*

程式設計:刪除一個升序排列的二維陣列中重複的數字,重複數字只保留一個。

輸入資料:2 2 3 4 4 5 6 6 6 7 7 8

輸出資料:2 3 4 5 6 7 8 9 10*/

#include <stdio.h>

void fun(int *tt,int n,int *k)

{

 int b[12],j=0,i;

 //依次取a陣列中的值,判斷和b陣列尾部元素值是否相等,把不相等者新增到b陣列中

 b[0]=tt[0];

 for(i=1;i<n;i++)

  if (tt[i]!=b[j])

   b[++j]=tt[i];

 //把整理後的資料重新寫回到原始陣列中

 for(i=0;i<=j;i++)

  tt[i]=b[i];

 *k=j;

}

int main()

{

 int a[12],i,n;

 for(i=0;i<12;i++)

  scanf("%d",&a[i]);

 fun(a,12,&n);

 for(i=0;i<=n;i++) printf("%d",a[i]);

 printf("\n\n");

 return 0;

}

16、/*買賣提將養的一缸金魚分n次出售,第一次賣出全部的一半加二分之一條;

第二次賣出餘下的三分之一加三分之一條;

第三次賣出餘下的四分之一加四分之一條;第四次賣出餘下的五分之一加五分之一條;

最後賣出餘下的11條。問原來的魚缸中共有幾條金魚?

輸入資料:5

輸出資料:59

*/

#include<stdio.h>

int count(int n)

{

   int i,t=11;

   for(i=n-1;i>=1;i--)

    t=((i+1)*t+1)/i;

   return t;

}

int main()

{

   int n,x;

   //輸入出售次數

   scanf("%d",&n);

   x=count(n);

   //輸出最初魚缸中的魚的條數

   printf("%d\n",x);

   return 0;

}

17、/*程式設計:完成set_grade函式,實現確定10個學生的成績等級和不及格人數。

  等級:A :85-100;B:70-84;C:60-69;D:0-59

輸入資料:zzs 88 zy 67 sl 55 jm 90 ly 56 hj 75 lz 90 wf 69 mt 79 hj 100

輸出資料: zzs A zy C sl D jm A ly D hj B lz A wf C mt B hj A 2

*/

#include <stdio.h>

struct student{

    char name[20];

    int score;

    char grade;

};

typedef struct student st;

void inputstudent(st *stu,int n)

{

 int i;

 for(i=0;i<n;i++)

 {

  scanf("%s",stu[i].name);  

  scanf("%d",&stu[i].score);

 }

}

int set_grade(struct student * p,int n)

{

    int i, k = 0;

    for(i = 0; i <n; i++, p++){

        if(p->score >= 85)

            p->grade = 'A';

        else if(p->score >= 70)

            p->grade = 'B';

        else if(p->score >= 60)

            p->grade = 'C';

        else{

            p->grade = 'D';

            k++;

        }

     }

     return k;

}

void outputstudent(st *p,int n)

{

 int i;

 for(i=0;i<n;i++,p++)

 {

  printf(" %s %c",p->name,p->grade);

 }

}

int main(void)

{

    struct student stu[10], *ptr;

 int count;

    ptr = stu;

    inputstudent(ptr,10);

    count = set_grade(ptr,10);

 outputstudent(ptr,10);

 printf(" %d\n",count);

    return 0;

}

18、/*

程式設計:現有一個班10個學生(姓名,成績),完成fun函式,求出平均分並輸出。

輸入資料:85 76 69 85 91 72 64 87 58 78

輸出資料:ave=76.50

*/

#include <stdio.h>

#include <stdlib.h>

#define N 10

struct person

{

double s;

struct person *next;

};

typedef struct person student;

double fun(student *h)

{

 double sum=0;

 student *p;

 p=h->next;

 while (p!=NULL)

 {

  sum=sum+p->s;

  p=p->next;

 }

 return sum/N;

}

//建立班級資訊連結串列

student *creat()

{student *h,*p,*q;

int i=0;

h=p=(student *)malloc(sizeof(student));

p->s=NULL;

while (i<N)

{

 q=(student*)malloc(sizeof(student));

 scanf("%lf",&q->s);

 i++;

 p->next=q;

 p=q;

}

p->next=NULL;

return h;

}

int main()

{

    double ave;

 student *h;

 h=creat();

 ave=fun(h);

 printf("ave=%.2f\n",ave);  

 printf("\n");

 return 0;

}

19、/*

程式設計:現有一個班10個學生(姓名,成績),完成fun函式,求出最高分並輸出。

輸入資料:85 76 69 85 91 72 64 87 58 78

輸出資料:max=91.00

*/

#include <stdio.h>

#include <stdlib.h>

#define N 10

struct person

{

double s;

struct person *next;

};

typedef struct person student;

double fun(student *h)

{

 double max;

 student *p;

 p=h->next;

 max=p->s;

 while (p!=NULL)

 {

  if (p->s>max) max=p->s;

  p=p->next;

 }

 return max;

}

//建立班級資訊連結串列

student *creat()

{student *h,*p,*q;

int i=0;

h=p=(student *)malloc(sizeof(student));

p->s=NULL;

while (i<N)

{

 q=(student*)malloc(sizeof(student));

 scanf("%lf",&q->s);

 i++;

 p->next=q;

 p=q;

}

p->next=NULL;

return h;

}

int main()

{

    double max;

 student *h;

 h=creat();

 max=fun(h);

 printf("max=%.2f\n",max);  

 printf("\n");

 return 0;

}

20、/*

程式設計:現有一個班10個學生(姓名,成績),完成fun函式,求出不及格的人數並輸出。

輸入資料:85 76 69 55 91 72 64 87 58 78

輸出資料:persons=2

*/

#include <stdio.h>

#include <stdlib.h>

#define N 10

struct person

{

double s;

struct person *next;

};

typedef struct person student;

int fun(student *h)

{

 int cnt=0;

 student *p;

 p=h->next;

 while (p!=NULL)

 {

  if (p->s<60) cnt++;

  p=p->next;

 }

 return cnt;

}

//建立班級資訊連結串列

student *creat()

{student *h,*p,*q;

int i=0;

h=p=(student *)malloc(sizeof(student));

p->s=NULL;

while (i<N)

{

 q=(student*)malloc(sizeof(student));

 scanf("%lf",&q->s);

 i++;

 p->next=q;

 p=q;

}

p->next=NULL;

return h;

}

int main()

{

    int n;

 student *h;

 h=creat();

 n=fun(h);

 printf("persons=%d\n",n);  

 printf("\n");

 return 0;

}

21、/*程式設計:完成subtract函式,實現對計算任意兩個24小時制的時間差。

輸入資料:11:12:23 10:10:18

輸出資料:1:2:5

*/

#include <stdio.h>

#include <string.h>

typedef struct

{

 int second;

 int minute;

 int hour;

}Time;

void swap(Time *time1,Time *time2)

{

 //確保第一個時間比第二個時間大

 if((time2->hour>time1->hour)||((time2->hour==time1->hour)&&(time2->minute>time1->minute))||((time2->hour==time1->hour)&&(time2->minute==time1->minute)&&(time2->second>time1->second)))

 {

  Time tmp;

  tmp=*time1;

  *time1=*time2;

  *time2=tmp;

 }

}

Time subtract(Time time1,Time time2)

{

 Time result;

 if (time1.second>=time2.second)

 {

  result.second=time1.second-time2.second;

 }

 else

 {

  time1.minute=time1.minute-1;

  time1.second=time1.second+60;

  result.second=time1.second-time2.second;

 }

 if (time1.minute>=time2.minute)

 {

  result.minute=time1.minute-time2.minute;

 }

 else

 {

  time1.hour=time1.hour-1;

  time1.minute=time1.minute+60;

  result.minute=time1.minute-time2.minute;

 }

 result.hour=time1.hour-time2.hour;

 return result;

}

void printtime(Time time)

{

 printf("%d:%d:%d",time.hour,time.minute,time.second);

}

int main()

{

 Time time1;

 Time time2;

 Time time3;

 char ch;

  printf("輸入兩個時間:");

  scanf("%d:%d:%d %d:%d:%d",&time1.hour,&time1.minute,&time1.second,&time2.hour,&time2.minute,&time2.second);  

  swap(&time1,&time2);

  time3=subtract(time1,time2);

  printtime(time3);

  printf("\n");

 return 0;

}

22、/*

一批20本圖書(書名,作者,出版社,價格,出版日期)。

程式設計:完成count函式,實現求購買某個出版社的書的冊數。

輸入資料:高等教育出版社

輸出資料:7

*/

#include <stdio.h>

#include <string.h>

struct cbrqs

{

 int year;

 int month;

 int day;

};

typedef struct books

{

 char name[30];

 char author[20];

 char publish[40];

 float price;

 struct cbrqs cbrq;

}book;

//求冊數

int count(book tt[],int n,char ts[])

{

 int i,cnt=0;

 for(i=0;i<n;i++)

  if (strcmp(tt[i].publish,ts)==0) cnt++;

 return cnt;

}

int main()

{   book ts[20]={"作業系統","湯子瀛","北京大學出版社",37,1997,3,15,"作業系統","張丹","清華大學出版社",35,1999,5,40,"高階語言程式設計","譚浩強","高等教育出版社",40,1999,4,20,"程式設計基礎","張琳","清華大學出版社",33,1994,5,15,"計算機基礎","王楠","高等教育出版社",34,1995,8,15,"資料結構","嚴蔚敏","清華大學出版社",38,1996,4,25,"網路原理","張浩","高等教育出版社",39.5,1997,5,15,"高階語言程式設計","葉坤","北京大學出版社",36,1997,5,15,"作業系統","湯和","吉林大學出版社",35.5,1997,6,15,"java程式設計","張瀛","高等教育出版社",37,1993,3,15,"windows程式設計","蘇芒","高等教育出版社",36.5,2000,7,27,"資訊管理","林星","北京大學出版社",38,1998,9,12,"c程式設計","湯子瀛","北京大學出版社",37,1997,3,15,".net程式設計","何莎","高等教育出版社",37,1997,9,15,"作業系統-2","李剛","北京大學出版社",43,1999,6,11,"物聯網基礎","凌雲","高等教育出版社",37,2017,5,29,"大資料處理","譚峰","北京大學出版社",37,2000,7,15,"作業系統","湯子","北京大學出版社",40.5,2004,3,15,"高階語言程式設計","張巖","吉林大學出版社",35,2010,12,18,"python程式設計","鄭楚","北京大學出版社",35.5,2008,11,26};

    int cs;   

 char cbs[80];

 gets(cbs);

 cs=count(ts,20,cbs);

 printf("%d\n",cs);

 return 0;

}

23、/*設有三個候選人(庫裡,哈登,阿德託昆博),總共有50張選票,完成count函式,統計指定候選人獲得的名次。

輸入資料:庫裡

輸出資料:第1名

*/

#include <stdio.h>

#include <string.h>

struct  person

{  char  name[20];

   int  cnt;

};

int count(struct person st[],char *tt[],char hxr[])

{

 int i,j;

 struct person tmp;

 for(i=0;i<50;i++)

  for(j=0;j<3;j++)

   if (strcmp(st[j].name,tt[i])==0) st[j].cnt++;

 for(i=0;i<2;i++)

  for(j=i+1;j<3;j++)

   if (st[i].cnt<st[j].cnt) {tmp=st[i];st[i]=st[j];st[j]=tmp;}

 for(i=0;i<3;i++)

  if (strcmp(st[i].name,hxr)==0)

   break;

 return i+1; }

int main()

{

 char *xp[50]={"庫裡","哈登","阿德託昆博","阿德託昆博","庫裡","庫裡","阿德託昆博","庫裡","阿德託昆博","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","庫裡","阿德託昆博","阿德託昆博","哈登","阿德託昆博","阿德託昆博","庫裡","庫裡","哈登","庫裡","哈登","庫裡","庫裡","庫裡","庫裡","庫裡","哈登","哈登","哈登","哈登","庫裡","庫裡","哈登","哈登","哈登","庫裡","庫裡","庫裡","庫裡"};

 struct person leader[3]={"庫裡",0,"哈登",0,"阿德託昆博",0};

 int n;

 char hxr[20];

 gets(hxr);

 n=count(leader,xp,hxr);

 printf("第%d名\n",n);

 return 0;

}

24、/*

10家公司(AA,BB,CC,DD,EE,FF,GG,HH,II,JJ,KK)投標,每個公司報一次價格,專家經過評標,選出中標公司。

評標規則:最接近平均報價的公司中標。

程式設計:實現自動評標。

輸入資料:76 80 70 83 85 89 88 100 93 99

輸出資料:中標的公司為:EE

*/

#include <stdio.h>

#include <math.h>

struct com

{

 char company[20];

 int price;

};

typedef struct com com;

 com fun(com *t1,int n)

{

 int i;

 com tmp;

 float sum=0,cj;

 //計算平均報價

 for(i=0;i<n;i++)

  sum=sum+t1[i].price;

 sum=sum/n;

 tmp=t1[0];

 cj=fabs(t1[0].price-sum);

 for(i=1;i<n;i++)

  if (fabs(t1[i].price-sum)<cj) {cj=fabs(t1[i].price-sum);tmp=t1[i];}

 //返回中標公司編號

 return tmp;

}

int main()

{

 com gs[10]={"AA",0,"BB",0,"CC",0,"DD",0,"EE",0,"FF",0,"GG",0,"HH",0,"II",0,"JJ",0};

 int i;

 com zb;

 for(i=0;i<10;i++)

  scanf("%d",&gs[i].price);

 zb=fun(gs,10);

 printf("中標的公司為:%s\n",zb.company);

 return 0;

}

25、/*

一批20本圖書(書名,作者,出版社,價格,出版日期)。

程式設計:完成count函式,實現求在某年(包括該年)以後購買書的費用。

輸入資料:2000

輸出資料:2000以後出版的書的成本為:221.50元

*/

#include <stdio.h>

#include <string.h>

struct cbrqs

{

 int year;

 int month;

 int day;

};

typedef struct books

{

 char name[30];

 char author[20];

 char publish[40];

 float price;

 struct cbrqs cbrq;

}book;

//求費用

float count(book tt[],int n,int x)

{

 int i;

 float sum=0;

 for(i=0;i<n;i++)

  if (tt[i].cbrq.year>=x)

   sum=sum+tt[i].price;

 return sum;

}

int main()

{   book ts[20]={"作業系統","湯子瀛","北京大學出版社",37,1997,3,15,"作業系統","張丹","清華大學出版社",35,1999,5,40,"高階語言程式設計","譚浩強","高等教育出版社",40,1999,4,20,"程式設計基礎","張琳","清華大學出版社",33,1994,5,15,"計算機基礎","王楠","高等教育出版社",34,1995,8,15,"資料結構","嚴蔚敏","清華大學出版社",38,1996,4,25,"網路原理","張浩","高等教育出版社",39.5,1997,5,15,"高階語言程式設計","葉坤","北京大學出版社",36,1997,5,15,"作業系統","湯和","吉林大學出版社",35.5,1997,6,15,"java程式設計","張瀛","高等教育出版社",37,1993,3,15,"windows程式設計","蘇芒","高等教育出版社",36.5,2000,7,27,"資訊管理","林星","北京大學出版社",38,1998,9,12,"c程式設計","湯子瀛","北京大學出版社",37,1997,3,15,".net程式設計","何莎","高等教育出版社",37,1997,9,15,"作業系統-2","李剛","北京大學出版社",43,1999,6,11,"物聯網基礎","凌雲","高等教育出版社",37,2017,5,29,"大資料處理","譚峰","北京大學出版社",37,2000,7,15,"作業系統","湯子","北京大學出版社",40.5,2004,3,15,"高階語言程式設計","張巖","吉林大學出版社",35,2010,12,18,"python程式設計","鄭楚","北京大學出版社",35.5,2008,11,26};

    float cb;   

 int nf;

 scanf("%d",&nf);

    cb=count(ts,20,nf);

 printf("%d以後出版的書的成本為:%.2f元\n",nf,cb);    

 return 0;

}

26、/*

程式設計:完成delsame函式,實現刪除任意一個有序連結串列中的重複元素(相同的值保留一個)

輸入資料:2 2 3 3 3 4 5 6 6 8 -1

輸出資料:2 3 4 5 6 8

*/

#include<malloc.h>

 #include<stdlib.h>

 #include<stdio.h>

 typedef struct LNode

 {

 int data;

 struct LNode* next;

 }LNode, *LinkList;

 void creatlist(LinkList *head)

 {

 LinkList p,q;

  *head=(LinkList)malloc(sizeof(LNode));

  (*head)->next=NULL;

  q=*head;

  int ch;

  scanf("%d",&ch);

  while (ch!=-1)

  {

   p=(LinkList)malloc(sizeof(LNode));

   p->data=ch;

   q->next=p;

   q=p;

   scanf("%d",&ch);

  }

  p->next=NULL;

 }

 void show( LinkList L ) // 顯示錶

{

while(L->next)

 {

 printf("%d ",L->next->data);

 L = L->next; }

 

 printf("\n");

 }

 

 void delsame( LinkList L ) // 刪除相同元素並釋放記憶體

{

    LinkList p,q;

 p=L->next;

 while (p->next!=NULL)

 {

  q=p->next;

  if (p->data==q->data)

  {p->next=q->next; free(q);}

  else

   p=p->next;

 }

 }

 

 void main( void )

 {

 LinkList LA = NULL;

 creatlist(&LA);

 delsame(LA);

 show(LA);

 }

27、/*

程式設計:完成search函式,實現統計資料檔案zy.dat檔案中的所有素數,儲存在result.dat檔案中

輸入資料:23 25 27 29 31 78 45 789 645 641

輸出資料:23 29 31 641

*/

#include <stdio.h>

#include <stdlib.h>

int isprime(int x)

{

 int i;

 for(i=2;i<x;i++)

  if (x%i==0) break;

 if (i==x)

  return 1;

 else

     return 0;

}

void save(char *s)

{

 FILE *fp;

 int i,x;

 fp=fopen(s,"w");

 for(i=0;i<10;i++)

 {

  scanf("%d",&x);

  fprintf(fp,"%d ",x);

 }

 fclose(fp);

}

void search(char *s1,char *s2)

 

{

 FILE *fp1,*fp2;

 int x;

 fp1=fopen(s1,"r");

 fp2=fopen(s2,"w");

 while ( fscanf(fp1,"%d",&x)==1)

 {

   if (isprime(x))

   fprintf(fp2,"%d ",x);   

 }

 fclose(fp1);

 fclose(fp2);

}

void read(char *s)

{

 FILE *fp;

 int x;

 fp=fopen(s,"r");

 while ( fscanf(fp,"%d",&x)==1)

   printf("%d ",x);

 fclose(fp);

}

int main()

{

save("zy.dat");

search("zy.dat","result.dat");

read("result.dat");

printf("\n");

return 0;

}

28、/*

程式設計:完成search函式,實現統計資料檔案zy.dat檔案中的所有成績中不及格的成績,儲存在result.dat檔案中

輸入資料:65 68 89 74 71 46 91 95 59 74

輸出資料:46 59

*/

#include <stdio.h>

#include <stdlib.h>

void save(char *s)

{

 FILE *fp;

 int i,x;

 fp=fopen(s,"w");

 for(i=0;i<10;i++)

 {

  scanf("%d",&x);

  fprintf(fp,"%d ",x);

 }

 fclose(fp);

}

void search(char *s1,char *s2)

 

{

 FILE *fp1,*fp2;

 int x;

 fp1=fopen(s1,"r");

 fp2=fopen(s2,"w");

 while (fscanf(fp1,"%d",&x)==1)

 {

   if (x<60)

   fprintf(fp2,"%d ",x);   

 }

 fclose(fp1);

 fclose(fp2);

}

void read(char *s)

{

 FILE *fp;

 int x;

 fp=fopen(s,"r");

 while (fscanf(fp,"%d",&x)==1)

  printf("%d ",x);

  fclose(fp);

}

int main()

{

save("zy.dat");

search("zy.dat","result.dat");

read("result.dat");

printf("\n");

return 0;

}

29、/*

程式設計:針對一批學生資訊(姓名,學號,成績),完成函式ave,求學生的平均成績。

輸入資料:56 69 89 78 63 65 48 72 63 91

輸出資料:平均成績為:69.40

*/

#include<stdio.h>

#include<stdlib.h>

#define N 10

struct Student

{

 char name[20];

 long num;

 int score;

};

typedef struct Student student;

void save(student st[])

{

 FILE *fp;

 int i;

 if((fp=fopen("file4.txt","w"))==NULL)

 {

  printf("cannot open file\n");

  return;

 }

 for(i=0;i<N;i++)

 {

   fwrite(&st[i],sizeof(student),1,fp);

 }

  fclose(fp);

}

float ave()

{

    FILE *fp;

 int i=0;

 float sum=0;

 student st;

 fp=fopen("file4.txt","r");

 while (fread(&st,sizeof(student),1,fp)==1)

 {

  sum=sum+st.score;

  i++;

 }

 fclose(fp);

 return sum/i;

}

int main()

{

 student stud[N]={"zy",1001,0,"sl",1002,0,"zhj",1003,0,"zzs",1004,0,"ly",1005,0,"jm",1006,0,"lf",1007,0,"zl",1008,0,"yl",1009,0,"hy",1010,0};

 int i;

 float s;

 for(i=0;i<N;i++)

  scanf("%d",&stud[i].score);

               //建立資料檔案

 save(stud);     

 s=ave();

 printf("平均成績為:%.2f\n",s);

 return 0;

}

30、/*

程式設計:針對一批學生資訊(姓名,學號,成績),完成函式sort,評選出學生成績的前三名。

輸入資料:56 69 89 78 63 65 48 72 63 91

輸出資料:zy:91,zhj:89,zzs:78

*/

#include<stdio.h>

#include<stdlib.h>

#define N 10

struct Student

{

 char name[20];

 long num;

 int score;

};

typedef struct Student student;

void save(student st[])

{

 FILE *fp;

 int i;

 if((fp=fopen("file4.txt","w"))==NULL)

 {

  printf("cannot open file\n");

  return;

 }

 for(i=0;i<N;i++)

 {

   fwrite(&st[i],sizeof(student),1,fp);

 }

  fclose(fp);

}

void sort(student tt[])

{

FILE *fp;

int i,j,k=0;

student st;

fp=fopen("file4.txt","r");

 while (fread(&tt[k],sizeof(student),1,fp)==1)

 k++;  

 fclose(fp);

for(i=0;i<k-1;i++)

for(j=i+1;j<k;j++)

if (tt[i].score<tt[j].score)

{st=tt[i];tt[i]=tt[j];tt[j]=st;}

}

int main()

{

 student stud[N]={"why",1001,0,"sl",1002,0,"zhj",1003,0,"zzs",1004,0,"ly",1005,0,"jm",1006,0,"lf",1007,0,"zl",1008,0,"yl",1009,0,"zy",1010,0};

 int i;

    student tt[N];

 for(i=0;i<N;i++)

  scanf("%d",&stud[i].score);

    //建立資料檔案

 save(stud);     

 sort(tt);

    //輸出前三名的姓名和成績

 printf("%s:%d,%s:%d,%s:%d\n",tt[0].name,tt[0].score,tt[1].name,tt[1].score,tt[2].name,tt[2].score);

 return 0;

}

31、/*

程式設計:現有二十張選票,三個候選人,完成fun函式,統計票王和票王得的票數。

輸入資料:庫裡 哈登 庫裡 哈登 哈登 庫裡 阿德託昆博 庫裡 哈登 庫裡 庫裡 哈登 庫裡 哈登 哈登 庫裡 阿德託昆博 庫裡 哈登 庫裡

輸出資料:票王是:庫裡,得票:10

*/

#include <stdio.h>

#include <string.h>

#define N 20

struct  person

{  char  name[20];

   int  cnt;

};

void save()

{

FILE *fp;

 char st[20];

 int i=0;

 if ((fp=fopen("xp1.dat","wb"))==NULL)

      {

  printf("cannot open file\n");

  return;

 }

 for(i=0;i<N;i++)

 {   scanf("%s",st);     

  fputs(st,fp);

  fputs("\r\n",fp);

  }

 fclose(fp);

}

struct person fun(struct person leader[])

{

 FILE *fp;

 char st[20];

 int i,length;

 struct person pw;

 fp=fopen("xp1.dat","rb");

 while (fgets(st,20,fp))

 {

  length=strlen(st);

  st[length-2]='\0';

  for(i=0;i<3;i++)

   if (strcmp(st,leader[i].name)==0) leader[i].cnt++;

 }

 fclose(fp);

     pw=leader[0];

  for(i=1;i<3;i++)

   if (leader[i].cnt>pw.cnt)

    pw=leader[i];

 return pw;

}

int main()

{

 char *xp[N];

 char data[N][20];

 int i;

 struct person leader[3]={"庫裡",0,"哈登",0,"阿德託昆博",0},pw;

 for(i=0;i<N;i++)

  xp[i]=data[i];

 save();

 pw=fun(leader);

 printf("票王是:%s,得票:%d\n",pw.name,pw.cnt);

 return 0;

}

32、/*

程式設計:現有某高校的裝置清單(裝置名稱,購買日期,價格),輸入當前年份,完成deal函式,實現將購買時間超過6年(包括6年)的裝置報廢,輸出新裝置總值。

輸入資料:2002

輸出資料:新的總資產為:5150元

*/

#include <stdio.h>

#include <string.h>

#define N 12

struct  goods

{  char  sbmc[30];

   int  gmrq;

   int price;

};

void save(struct goods st[])

{

FILE *fp;

 int i=0;

 if ((fp=fopen("good.dat","wb"))==NULL)

      {

  printf("cannot open file\n");

  return;

 }

 for(i=0;i<N;i++)

    fwrite(&st[i],sizeof(struct goods),1,fp);

  fclose(fp);

}

void deal(int year)

{

 FILE *fp;

 struct goods st[N],pw;

 int i,j=0;

 fp=fopen("good.dat","rb");

 while (fread(&pw,sizeof(struct goods),1,fp)==1)

 {  

  if (year-pw.gmrq+1<6)

   st[j++]=pw;

 }

 fclose(fp);

 fp=fopen("good.dat","wb");

 for(i=0;i<j;i++)

  fwrite(&st[i],sizeof(struct goods),1,fp);

 fclose(fp);

}

int count()

{

 int sum=0;

 FILE *fp;

 struct goods pw;  

 fp=fopen("good.dat","rb");

 while (fread(&pw,sizeof(struct goods),1,fp)==1)

    sum=sum+pw.price;

  fclose(fp);

 return sum;

}

int main()

{

 int year,zzc;

 struct goods devices[20]={"AA",1995,450,"BB",1997,500,"CC",2000,300,"DD",1997,280,"EE",2011,1000,"FF",2013,1200,"GG",1996,730,"ZZYY",1979,404,"SS",2000,800,"ZZ",2015,610,"TT",2016,900,"VV",2000,340};

 save(devices);

 scanf("%d",&year);

 deal(year);

 zzc=count();

 printf("新的總資產為:%d元\n",zzc);

 return 0;

}

33、/*

程式設計:完成search函式,實現統計資料檔案zy.dat檔案中的所有迴文數(及逆序後和原數相等的整數,如1221),儲存在result.dat檔案中

輸入資料:656 12321 121 7 71 46 91 95 1221 232 1979 90404 7910 1204 69898

輸出資料:656 12321 121 7 1221 232

*/

#include <stdio.h>

#include <stdlib.h>

void save(char *s)

{

 FILE *fp;

 int i,x;

 fp=fopen(s,"w");

 for(i=0;i<15;i++)

 {

  scanf("%d",&x);

  fprintf(fp,"%d ",x);

 }

 fclose(fp);

}

void search(char *s1,char *s2)

 

{

 FILE *fp1,*fp2;

 int x,sum,t,p;

 fp1=fopen(s1,"r");

 fp2=fopen(s2,"w");

 while (fscanf(fp1,"%d",&x)==1)

 {

   //判斷x是否迴文數

  t=x;

  sum=0;

  while (t!=0)

  {

   sum=sum*10+t%10;

   t=t/10;

  }

  if (sum==x)

   fprintf(fp2,"%d ",x);   

 }

 fclose(fp1);

 fclose(fp2);

}

void read(char *s)

{

 FILE *fp;

 int x;

 fp=fopen(s,"r");

 while (fscanf(fp,"%d",&x)==1)

  printf("%d ",x);

  fclose(fp);

}

int main()

{

save("zy.dat");

search("zy.dat","result.dat");

read("result.dat");

printf("\n");

return 0;

}

34、/*

程式設計:一批學生成績資訊(姓名,成績1,成績2,成績3,成績4),完成search函式,統計本次考試中某道題(1~4)的得分率。

輸入資料:2

輸出資料:第2題得分率:73.6%

*/

#include <stdio.h>

#include <stdlib.h>

struct Student

{

 char name[20];

 int score[4];//依次儲存該生每一道題的得分,原始題目分值都是25分

};

typedef struct Student student;

void save(char *s,student stu[])

{

 FILE *fp;

 int i,x;

 fp=fopen(s,"w");

 for(i=0;i<10;i++)

   fwrite(&stu[i],sizeof(student),1,fp);

 fclose(fp);

}

void search(char *s1,char *s2)

 

{

 FILE *fp1,*fp2;

 student st;

 int i=0;

 float sum1,sum2,sum3,sum4;

 fp1=fopen(s1,"r");

 fp2=fopen(s2,"w");

 sum1=sum2=sum3=sum4=0;

 while (fread(&st,sizeof(student),1,fp1)==1)

 {

     sum1=sum1+st.score[0];

  sum2=sum2+st.score[1];

  sum3=sum3+st.score[2];

  sum4=sum4+st.score[3];

  i++;   

 }

 sum1=sum1/(i*25);sum2=sum2/(i*25);sum3=sum3/(i*25);sum4=sum4/(i*25);

 fprintf(fp2,"%f %f %f %f ",sum1,sum2,sum3,sum4);

 fclose(fp1);

 fclose(fp2);

}

void read(char *s,int n)

{

 FILE *fp;

 float x;

 int i=0;

 fp=fopen(s,"r");

 while (fscanf(fp,"%f",&x)==1)

 {

  i++;

  if (i==n)

  {printf("第%d題得分率:%.1f%%",i,x*100);break;}

 }

  fclose(fp);

}

int main()

{

 student stu[]={"AA",18,17,25,20,"BB",20,10,15,25,"CC",20,15,20,12,"DD",18,20,20,10,"EE",16,18,20,18,"FF",10,25,20,10,"GG",10,25,20,10,"HH",20,19,20,20,"II",20,10,25,20,"JJ",20,25,20,16};

 int n;

save("zy.dat",stu);

search("zy.dat","result.dat");

printf("輸入題目編號:");

scanf("%d",&n);

read("result.dat",n);

printf("\n");

return 0;

}