文明城市初中作文
1.完成下列程序

*
*.*.
*..*..*..
*…*…*…*…
*….*….*….*….*….
*…..*…..*…..*…..*…..*…..
*……*……*……*……*……*……*……
*…….*…….*…….*…….*…….*…….*…….*…….
#include
#define N 8
int main()
{
int i;
int j;
int k;
———————————————————
||
———————————————————
return 0;
}
2.完成程序,實(shí)現(xiàn)對(duì)數(shù)組的降序排序
#include
void sort( );
int main()
{
int array[]={45,56,76,234,1,34,23,2,3}; /pic/pic/p>
sort( );
return 0;
}
void sort( )
{
——————————————————
||
——————————————————
}
3.費(fèi)波那其數(shù)列,1,1,2,3,5……編寫程序求第十項(xiàng)?梢杂眠f歸,也可以用其他方法,但要說(shuō)明你選擇的理由。
#include
int Pheponatch(int);
int main()
{
printf(“The 10th is %d”,Pheponatch(10));
return 0;
}
int Pheponatch(int N)
{
——————————–
||
——————————–
}
4.下列程序運(yùn)行時(shí)會(huì)崩潰,請(qǐng)找出錯(cuò)誤并改正,并且說(shuō)明原因。
#include
#include
typedef struct{
TNode* left;
TNode* right;
int value;
} TNode;
TNode* root=NULL;
void append(int N);
int main()
{
append(63);
append(45);
append(32);
append(77);
append(96);
append(21);
append(17); /pic/p>
}
void append(int N)
{
TNode* NewNode=(TNode *)malloc(sizeof(TNode));
NewNode->value=N;
if(root==NULL)
{
root=NewNode;
return;
}
else
{
TNode* temp;
temp=root;
while((N>=temp.value && temp.left!=NULL) || (N
{
while(N>=temp.value && temp.left!=NULL)
temp=temp.left;
while(N
temp=temp.right;
}
if(N>=temp.value)
temp.left=NewNode;
else
temp.right=NewNode;
return;
}
}
【文明城市初中作文】相關(guān)文章:
贛榆—文明城市作文04-16
關(guān)于文明城市的作文09-14
建設(shè)文明城市作文12-01
創(chuàng)建文明城市的作文02-29
我心中的文明城市作文04-10
文明城市作文(精選34篇)12-26
文明城市作文(精選59篇)10-26
文明城市從我做起作文04-09
創(chuàng)建文明城市作文(經(jīng)典)04-09
文明城市作文20篇05-23
- 相關(guān)推薦