帮忙用C语言写个简单的小程序,题目如下:利用结构体数据类型编程

帮忙用C语言写个简单的小程序,题目如下:利用结构体数据类型编程,第1张

先定义学生结构体:

struct student

{

string name;

string number;

float c_score;

};

定义学生数组:

const int stu_amount= 20;//学生人数

student stu[stu_amount];

for(int index =0; index <stu_amount; index++)

{/一个个录入成绩/}

汇总所有学生的成绩和输出不及格的学生:

float sum_score;//成绩汇总

float pass_score=60;//及格分数

printf("不及格的学生有:\n");

printf("姓名\t学号\t成绩\n");

for(int index =0; index <stu_amount; index++)

{

score+=stu[index]c_score;

if(stu[index]c_score<pass_score)

{

printf("%s\t%s\t%f\n",stu[index]name,stu[index]number,stu[index]c_score)

}

}

最后计算平均成绩并输出:

float avg_score=score/stu_amount;

printf("平均成绩是:%f\n",avg_score);

代码没实际调试,请自行组织整理。希望对你有帮助。

/输入两个整数a和b,求平均值ave。并输出平均值。/

#include

/

此头函数请不要删除

/

main()

{

float

a,b,ave;

printf("请输入整数a和b以逗号隔开:\n");

scanf("%f,%f",&a,&b);

ave=(a+b)/2;

printf("整数a和b的平均值是ave=%62f",ave);

getch();

}

/

输入圆柱底面的半径radius和圆柱的高height,求圆柱的表面积area和体积volumn,

要求输出结果保留两位小数、/

main()

{

float

radius,height,area,volumn;

printf("请输入圆柱底面的半径radius:\n");

scanf("%f",&radius);

printf("请输入圆柱的高height:\n");

scanf("%f",&height);

area=314(radiusradius)+2314radius;

volumn=314(radiusradius)height;

printf("圆柱的表面积area=%82f

\n体积volumn=%82f",area,volumn);

getch();

}

/

设银行定期存款的年利率rate为382%,并已知存款期为n年,存款本金为capital元,

试编程计算n年后的本利之和deposit要求rate,n

,capital均从键盘输入,输出信息要完整清晰。。

/

main()

{

float

rate,n,capital,deposit,i;

printf("请输入年利率rate:");

scanf("%f",&rate);

printf("请输入存款本金capital:");

scanf("%f",&capital);

printf("请输入存期年n:");

scanf("%f",&n);

deposit=capital;

i=n;

while(i!=0)

{

deposit=(1+00382)deposit;

i=i-1;

}

printf("%1f年后的本利之和为:%92f",n,deposit);

getch();

}

一个“歼灭敌机”的小游戏,DEVc++编译通过:

#include <stdioh>

#include <conioh>

#include <stdlibh>

#include <windowsh>

#include <timeh>

#define zlx 10  //增量坐标(x)让游戏框不靠边

#define zly 3   //增量坐标(y)让游戏框不靠边

#define W 26  //游戏框的宽度

#define H 24  //游戏框的高度

int jiem[22][22]={0}, wj=10;  //界面数组, 我机位置(初值为10)

int speed=4,density=30, score=0,death=0; //敌机速度, 敌机密度, 玩家成绩,死亡次数

int m=0,n=0;  // m,n是控制敌机的变量

void gtxy (int x, int y)  //控制光标位置的函数

{ COORD pos;

posX = x;  posY = y;

SetConsoleCursorPosition ( GetStdHandle (STD_OUTPUT_HANDLE), pos );

}

void Color(int a)  //设定颜色的函数(a应为1-15)

{ SetConsoleTextAttribute( GetStdHandle(STD_OUTPUT_HANDLE), a ); }

void yinc(int x=1,int y=0)   //隐藏光标的函数

{ CONSOLE_CURSOR_INFO  gb={x,y};   //y设为0即隐藏

SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &gb);

}

void csh( )  //初始化函数

{ int i;

Color(7);

gtxy(zlx,zly); printf("╔");  gtxy(zlx+W-2,zly); printf("╗");  //左上角和右上角的框角

gtxy(zlx,zly+H-1); printf("╚"); gtxy(zlx+W-2,zly+H-1); printf("╝"); //下边两框角

for(i=2;i<W-2;i+=2) {gtxy(zlx+i,zly);  printf("═"); }      //打印上横框

for(i=2;i<W-2;i+=2) {gtxy(zlx+i,zly+H-1); printf("═"); }  //打印下横框

for(i=1;i<H-1;i++) { gtxy(zlx,zly+i);  printf("║"); }       //打印左竖框

for(i=1;i<H-1;i++) {gtxy(zlx+W-2,zly+i); printf("║"); }  //打印右竖框

Color(14);gtxy(19,2); printf("歼灭敌机"); Color(10);

gtxy(37,5); printf("设置:Esc ");

gtxy(37,7); printf("发射:↑ ");

gtxy(37,9); printf("控制:← → ");

gtxy(37,11);printf("得分:%d",score);

gtxy(37,13); printf("死亡:%d",death);

yinc(1,0);

}

void qcjm( )  //清除界面函数

{int i,j;

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

for(j=0;j<W-4;j++){gtxy(zlx+2+j,zly+1+i);printf(" ");}

}

void feiji( )  //飞机移动函数

{int i,j;

for(i=21;i>=0;i--)  //从底行往上是为了避免敌机直接冲出数组

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

     {if(i==21&&jiem[i][j]==3) jiem[i][j]=0;  //底行赋值0 以免越界

       if(jiem[i][j]==3) jiem[i][j]=0, jiem[i+1][j]=3;

     }

if(jiem[20][wj]==3&&jiem[21][wj]==1) death++;

}

void zidan( )  //子d移动函数

{ int i,j;

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

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

     {if(i==0&&jiem[i][j]==2) jiem[i][j]=0;

     if(jiem[i][j]==2) { if(jiem[i-1][j]==3) score+=100,printf("\7");

                                 jiem[i][j]=0,jiem[i-1][j]=2; }

     }

}

void print(  )  //输出界面函数

{int i,j;

qcjm( );

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

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

{ gtxy(12+j,4+i);

if(jiem[i][j]==3) {Color(13);printf("□");}

if(jiem[i][j]==2) {Color(10);printf("");}

if(jiem[i][j]==1) {Color(10);printf("■");}

}

gtxy(37,11); Color(10);printf("得分:%d",score);

gtxy(37,13); printf("死亡:%d",death);

}

void setting( )  //游戏设置函数

{ qcjm( );

gtxy(12,4);printf("选择敌机速度:");

gtxy(12,5);printf("  1快 2中 3慢>>");

switch(getche( ))

    {case '1': speed=2; break;

     case '2': speed=4; break;

     case '3': speed=5; break;

     default: gtxy(12,6);printf("  错误!默认值");

   }

gtxy(12,7);printf("选择敌机密度:");

gtxy(12,8);printf("  1大 2中 3小>>");

switch(getche( ))

     {case '1': density=20; break;

case '2': density=30; break;

case '3': density=40; break;

     default: gtxy(12,9);printf("  错误!默认值");

     }

for(int i=0;i<22;i++)

 for(int j=0;j<22;j++)jiem[i][j]=0;

jiem[21][wj=10]=1; jiem[0][5]=3;

gtxy(12,10);printf("  按任意键保存");

getch( );

qcjm( );

}

void run( )  //游戏运行函数

{ jiem[21][wj]=1;  //值为1代表我机(2则为子d)

jiem[0][5]=3;   //值为3代表敌机

SetConsoleTitle("歼灭敌机");  //设置窗口标题

while(1)

{ if (kbhit( ))  //如有键按下,控制我机左右移动、发射或进行设定

     {int key;

      if((key=getch( ))==224) key=getch( );

      switch(key)

      { case 75: if(wj>0) jiem[21][wj]=0,jiem[21][--wj]=1; break;

        case 77: if(wj<20) jiem[21][wj]=0,jiem[21][++wj]=1; break;

        case 72: jiem[20][wj]=2; break;

       case 27: setting( );

      }

   }

   if(++n%density==0)  //控制产生敌机的速度

     { n=0;srand((unsigned)time(NULL));

       jiem[0][rand( )%20+1]=3;

     }

    if(++m%speed==0) {feiji( ); m=0;}  //控制敌机移动速度(相对子d而言)

    zidan( );

   print( );

Sleep(120);  //延时120毫秒

  }

}

int main( )

{csh( );

 run( );

 return 0;

}

新手要方便写代码,可以收藏下面几个自编函数:

SetConsoleTitle("俄罗斯方块");  //设置窗口左上角标题栏处出现"俄罗斯方块"5个字

srand( (unsigned) time(NULL) );  //初始化随机数发生器

n= rand(  ) % 20;   //产生随机数0-19中的一个 如 rand(  )%5 就产生0-4中的一个数

SetConsoleTitle(  )函数在<windowsh>里, srand(  )函数与rand(  )函数要配合用,

就是同时要用,在<stdlibh>里。如果 rand( )%10+1 就产生1-10之中的一个数。

Sleep(300);   //延时300毫秒(就是程序暂停300毫秒后继续运行)

system("cls");   //清屏(把窗口里的内容全部清除,光标定于(0,0)位置处)

这两个函数都在<windowsh>里。开头4个自编函数 编写如下:

void gtxy (int x, int y)  //控制光标位置的函数

{ COORD pos;

posX = x;

posY = y;

SetConsoleCursorPosition ( GetStdHandle (STD_OUTPUT_HANDLE), pos );

}

void Color (int a)  //设定颜色的函数

{ SetConsoleTextAttribute ( GetStdHandle ( STD_OUTPUT_HANDLE ),a ); }

void yinc (int x,int y)   //隐藏光标的函数

{ CONSOLE_CURSOR_INFO   gb={ x , y };   //gb代表光标

SetConsoleCursorInfo ( GetStdHandle(STD_OUTPUT_HANDLE),  &gb );

}

void kou(int w,int h)  //设置窗口大小的函数

{HANDLE  hl=GetStdHandle ( STD_OUTPUT_HANDLE ) ;

COORD  size={ w , h };

SetConsoleScreenBufferSize( hl , size );

SMALL_RECT  rc={ 0, 0, w, h };

SetConsoleWindowInfo( hl, 1, &rc );

}

最后这个函数,参数w是宽h是高。里边5行中第一行定义了句柄型变量hl,并给它赋值。

第二行定义了坐标型结构体变量size,它的取值决定了缓冲区的大小。第三行就是使用

size的值设置好缓冲区大小。第四行定义了变量rc,它的值决定当前窗口显示的位置与

大小(不得超过缓冲区的大小)。前两个0,0是从缓冲区左上角0列0行位置处开始,后两

个参数可以小于w和h比如 rc={0,0,w-10,h-5}; 最后一行使用rc的值设置好窗口,中间

那个参数要为" 1 "或写“ true ”才有效。

修改后如下

你所说的多循环一次是因为输入的回车被读入

目前加了判断略去输入的回车 如果需要略去其他字符 比如空格等 可类似判断

#include<stdioh>

#include<stringh>

main()

{

char p;

int i,count=8,rightcount=0;

char answer[]="junk";

char guess,userguess[strlen(answer)];

for (i=0;i<strlen(answer);i++)

userguess[i]='-';

userguess[i] = 0;//这里 加个结束符

while(rightcount!=strlen(answer)&&count!=0)//这里条件微调了一下

{

printf("The word now looks like this :%s\n",userguess);

if(count!=1)

printf("You have %d guesses left\n",count);

else

printf("You have only one guess left\n");

printf("Your guess:");

while(scanf("%c",&guess) && guess == '\n');//略去换行符输入

if((p=strchr(answer,guess)))

{

(userguess+(p-answer))=p;

rightcount++;

p='-';

printf("The guess is correct\n");

}

else 

{

count--;

printf("There are no %c's in the word\n\a",guess);

}

}

if(rightcount==strlen(answer)) printf("You win\n");

else printf("You lose\n");

}

/money management system/

#include "stdioh"

#include "dosh"

#include "conioh"

main()

{

FILE fp;

struct date d;

float sum,chm=00;

int len,i,j=0;

int c;

char ch[4]="",ch1[16]="",chtime[12]="",chshop[16],chmoney[8];

pp:

clrscr();

sum=00;

gotoxy(1,1);printf("|---------------------------------------------------------------------------|");

gotoxy(1,2);printf("| money management system(C10) 200003 |");

gotoxy(1,3);printf("|---------------------------------------------------------------------------|");

gotoxy(1,4);printf("| -- money records -- | -- today cost list -- |");

gotoxy(1,5);printf("| ------------------------ |-------------------------------------|");

gotoxy(1,6);printf("| date: -------------- | |");

gotoxy(1,7);printf("| | | | |");

gotoxy(1,8);printf("| -------------- | |");

gotoxy(1,9);printf("| thgs: ------------------ | |");

gotoxy(1,10);printf("| | | | |");

gotoxy(1,11);printf("| ------------------ | |");

gotoxy(1,12);printf("| cost: ---------- | |");

gotoxy(1,13);printf("| | | | |");

gotoxy(1,14);printf("| ---------- | |");

gotoxy(1,15);printf("| | |");

gotoxy(1,16);printf("| | |");

gotoxy(1,17);printf("| | |");

gotoxy(1,18);printf("| | |");

gotoxy(1,19);printf("| | |");

gotoxy(1,20);printf("| | |");

gotoxy(1,21);printf("| | |");

gotoxy(1,22);printf("| | |");

gotoxy(1,23);printf("|---------------------------------------------------------------------------|");

i=0;

getdate(&d);

sprintf(chtime,"%4d%02d%02d",dda_year,dda_mon,dda_day);

for(;;)

{

gotoxy(3,24);printf(" Tab __browse cost list Esc __quit");

gotoxy(13,10);printf(" ");

gotoxy(13,13);printf(" ");

gotoxy(13,7);printf("%s",chtime);

j=18;

ch[0]=getch();

if(ch[0]==27)

break;

strcpy(chshop,"");

strcpy(chmoney,"");

if(ch[0]==9)

{

mm:

i=0;

fp=fopen("homedat","r+");

gotoxy(3,24);printf(" ");

gotoxy(6,4);printf(" list records ");

gotoxy(1,5);printf("|-------------------------------------|");

gotoxy(41,4);printf(" ");

gotoxy(41,5);printf(" |");

while(fscanf(fp,"%10s%14s%f\n",chtime,chshop,&chm)!=EOF)

{

if(i==36)

{

getch();

i=0;

}

if((i%36)<17)

{

gotoxy(4,6+i);

printf(" ");

gotoxy(4,6+i);

}

else

if((i%36)>16)

{

gotoxy(41,4+i-17);

printf(" ");

gotoxy(42,4+i-17);

}

i++;

sum=sum+chm;

printf("%10s %-14s %61f\n",chtime,chshop,chm);

}

gotoxy(1,23);printf("|---------------------------------------------------------------------------|");

gotoxy(1,24);printf("| |");

gotoxy(1,25);printf("|---------------------------------------------------------------------------|");

gotoxy(10,24);printf("total is %81f$",sum);

fclose(fp);

gotoxy(49,24);printf("press any key to");getch();goto pp;

}

else

{

while(ch[0]!='\r')

{

if(j<10)

{

strncat(chtime,ch,1);

j++;

}

if(ch[0]==8)

{

len=strlen(chtime)-1;

if(j>15)

{len=len+1; j=11;}

strcpy(ch1,"");

j=j-2;

strncat(ch1,chtime,len);

strcpy(chtime,"");

strncat(chtime,ch1,len-1);

gotoxy(13,7);printf(" ");

}

gotoxy(13,7);printf("%s",chtime);ch[0]=getch();

if(ch[0]==9)

goto mm;

if(ch[0]==27)

exit(1);

}

gotoxy(3,24);printf(" ");

gotoxy(13,10);

j=0;

ch[0]=getch();

while(ch[0]!='\r')

{

if (j<14)

{

strncat(chshop,ch,1);

j++;

}

if(ch[0]==8)

{

len=strlen(chshop)-1;

strcpy(ch1,"");

j=j-2;

strncat(ch1,chshop,len);

strcpy(chshop,"");

strncat(chshop,ch1,len-1);

gotoxy(13,10);printf(" ");

}

gotoxy(13,10);printf("%s",chshop);ch[0]=getch();

}

gotoxy(13,13);

j=0;

ch[0]=getch();

while(ch[0]!='\r')

{

if (j<6)

{

strncat(chmoney,ch,1);

j++;

}

if(ch[0]==8)

{

len=strlen(chmoney)-1;

strcpy(ch1,"");

j=j-2;

strncat(ch1,chmoney,len);

strcpy(chmoney,"");

strncat(chmoney,ch1,len-1);

gotoxy(13,13);printf(" ");

}

gotoxy(13,13);printf("%s",chmoney);ch[0]=getch();

}

if((strlen(chshop)==0)||(strlen(chmoney)==0))

continue;

if((fp=fopen("homedat","a+"))!=NULL);

fprintf(fp,"%10s%14s%6s",chtime,chshop,chmoney);

fputc('\n',fp);

fclose(fp);

i++;

gotoxy(41,5+i);

printf("%10s %-14s %-6s",chtime,chshop,chmoney);

}

}

getch();

}

if(0>x||x>100)

printf("输入的是一个错误的成绩");

加个return 退出程序

即:

if(0>x||x>100)

{

printf("输入的是一个错误的成绩");

return ;

}

并且最好提到最前面来,如果是错误的成绩就不判断等级了,直接提示错误后退出

另外,你这个变量定义成char型的比较简单直观,x用于接收浮点数,在if条件中最好把89之类的改成8999,成绩有可能是895嘛。

#include "stdioh"

void main()

{

char y;

float x;

printf("请输入百分制成绩") ;

scanf("%f",&x) ;

if(0>x||x>100)

{

printf("输入的是一个错误的成绩");

return ;

}

else

if(100>=x&&x>=90)

y='A';

else

if(8999>=x&&x>=80)

y='B';

else

if(7999>=x&&x>=70)

y='C';

else

if(6999>=x&&x>=60)

y='D';

else

if(5999>=x&&x>=0)

y='E';

printf("该学生成绩等级为%c",y);

return;

}

以上就是关于帮忙用C语言写个简单的小程序,题目如下:利用结构体数据类型编程全部的内容,包括:帮忙用C语言写个简单的小程序,题目如下:利用结构体数据类型编程、编写几个C语言小程序。。、有什么好玩的C语言小程序等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9463010.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存