1.c语言课程设计
void dlt(char str[],int n,int m)
{
int i;
for(i=n;i<n+m;i++)
str[i]='\0';
for(i=n;i<80;i++)
str[i]=str[i+m];
}
void crzf(char str[],int n,int m)
{
int i,j;
char str1[80],c;
j=0;
for(i=n;i<80;i++)
{str1[j]=str[i];j++;}
for(i=n;i<n+m;i++){
scanf("%c",&c);
if(c!='\n')str[i]=c;
else i=i-1;}
printf("\n");
j=0;
for(i=n+m;i<80;i++)
{ str[i]=str1[j];j++;}
}
void bx(char str[])
{
int i,j,s;
char c;
s=strlen(str)-1;
for(i=0;i<s-1;i++)
for(j=i+1;j<s;j++)
if(str[i]>str[j])
{
c=str[j];
str[j]=str[i];
str[i]=c;
}
}
转载请注明出处众文网 » 走班选课系统毕业论文