解题思路:
注意事项:下面的代码可以在我的VC上跑,不知道为啥平台上面跑不了,有无兄弟看一下啥原因
参考代码:
#include<stdio.h>
#include<malloc.h>
int main()
{
int n,i,j,cloth_nums,cloth_location,num = 0;
int *a1,*a2;
scanf("%d",&n);
a1 = (int*)malloc(sizeof(int)*(n+1));
for(i = 0;i<n+1;i++)
{
a1[i] = 0;
}
while(scanf("%d",&cloth_nums)!=EOF)
{
a2 = (int*)malloc(sizeof(int)*cloth_nums);
for(i = 0;i<cloth_nums;i++)
{
scanf("%d",&a2[i]);
}
scanf("%d",&cloth_location);
num = 0;
for(i = 0;i<cloth_nums;i++)
{
for(j=1;j<=a2[i];j++)
{
a1[num] = 1;
num++;
}
a1[num] = 2;
num++;
}
printf("%d\n",a1[cloth_location-1]);
for(i = 0;i<n+1;i++)
{
a1[i] = 0;
}
free(a2);
}
}
0.0分
0 人评分
十->二进制转换 (C语言代码)浏览:1330 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:616 |
母牛的故事 (C语言代码)浏览:739 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:566 |
蚂蚁感冒 (C语言代码)浏览:1408 |
复数求和 (C语言代码)浏览:994 |
陶陶摘苹果2 (C语言代码)浏览:650 |
1134题解(求分析)浏览:795 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:751 |