运行结果是945组,代码如下:
#include <stdioh>
int FindNext(int A_index[], int B_index[], int group[],int x, int q, int start)
{
int m=start, flag, p;
if((q>0)&&(start<group[q-1]))
{
m=group[q-1];
}
for(;m<x;m++)
{
flag=0;
for(p=0;p<q;p++)
{
if((A_index[group[p]]==A_index[m])
||(A_index[group[p]]==B_index[m])
||(B_index[group[p]]==A_index[m])
||(B_index[group[p]]==B_index[m]))
{
flag=1;
break;
}
}
if(flag==0)
{
return m;
}
}
return -1;
}
int AnalyseArray(int data[])
{
int A_index[1000], B_index[1000];
int i, j, k, m, n=0, x=0, y=4, q=0, last=0;
int group[1000][5];
for(i=0;i<10;i++)
{
for(j=0;j<10;j++)
{
if((j!=i)&&(data[j]>data[i]))
{
A_index[x]=i;
B_index[x]=j;
x++;
}
}
}
do
{
m=FindNext(A_index, B_index, group[n], x, q, last);
if(m>=0)
{
group[n][q]=m;
q++;
if(q>=5)
{
y=4;
n++;
last=group[n-1][y]+1;
q=y;
for(m=0;m<y;m++)
{
group[n][m]=group[n-1][m];
}
}
}
else
{
y--;
if(y>=0)
{
last=group[n-1][y]+1;
q=y;
for(m=0;m<y;m++)
{
group[n][m]=group[n-1][m];
}
}
}
}while(y>=0);
printf("组合有: \n");
for(i=0;i<n;i++)
{
printf("%d) A组[",i+1);
for(k=0;k<5;k++)
{
m=group[i][k];
j=A_index[m];
printf("%d ",data[j]);
}
printf("]; B组[");
for(k=0;k<5;k++)
{
m=group[i][k];
j=B_index[m];
printf("%d ",data[j]);
}
printf("]\n");
}
return n;
}
int main()
{
int DATA[10]={0,1,2,3,4,5,6,7,8,9};
int ret = AnalyseArray(DATA);
printf("共%d组\n",ret);
return 0;
}
c read and group中含有例词画线部分的读音是:sleeping morning ringing Ding-dong
C Read and group是一首歌谣(读此歌谣,找出含有与例词划线部分读音相同的单词)。
Are you sleepingAre you sleeping
Brother John Brother John
Morning bells are ringing Morning bells are ringing
Ding-dong!Ding-dong!
sing___ ___
答案是:sleeping morning ringing Ding-dong
英语的句子成分:
一个句子一般皆由两部分组成,即主语部分(subject group)和谓语部分(predicate group)。
主语部分一般由名词或动名词构成,谓语部分一般由动词构成。如:Professor Ward teaches English to university students沃德教授给大学生教英语。
句中的Professor Ward是主语部分,teaches English to university students 是谓语部分。
句子成分(members of the sentence )是句子中起一定功用的组成部分。句子由各个句子成分所构成。句子的组成部分,包括主语、谓语、宾语、定语、补语、状语、表语、同位语八种。一个句子未必有主语和宾语,但一定有谓语。
以上就是关于C语言编程,这题怎么做全部的内容,包括:C语言编程,这题怎么做、cread and group(读句子,找出含有例词画线部分读音、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)