/ 科创班 /

记录详情

Accepted

/in/foo.c: In function 'main':
/in/foo.c:12:9: warning: format '%s' expects argument of type 'char *', but argument 2 has type 'char (*)[10]' [-Wformat=]
 scanf("%s",&str);
         ^
# 状态 耗时 内存占用
#1 Accepted 3ms 256.0 KiB
#2 Accepted 2ms 256.0 KiB
#3 Accepted 3ms 256.0 KiB
#4 Accepted 2ms 256.0 KiB
#5 Accepted 3ms 256.0 KiB
#6 Accepted 3ms 256.0 KiB
#7 Accepted 3ms 256.0 KiB
#8 Accepted 2ms 256.0 KiB
#9 Accepted 3ms 256.0 KiB
#10 Accepted 2ms 256.0 KiB

代码

#include <stdio.h>
#include <string.h>
#define N 10

char str[N];

int main()
{
void sort(char []);
int i;

scanf("%s",&str);
sort(str);

//printf("string sorted:\n");
 for(i=0;i<N;i++)  
       printf("%c",str[i]);
//printf("\n");
return 0;
}

void sort(char str[]){
	int i,j;
	char t;
	for(j=1;j<N;j++)
	    for(i=0;(i<N-j)&&(str[i]!='\0');i++)
	         if(str[i]>str[i+1])
	         {t=str[i];
	         str[i]=str[i+1];
	         str[i+1]=t;
			 }
}

信息

递交者
类型
递交
题目
7.11字符排序
题目数据
下载
语言
C
递交时间
2018-07-13 18:28:53
评测时间
2018-07-13 18:28:53
评测机
分数
100
总耗时
31ms
峰值内存
256.0 KiB