真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯網站制作重慶分公司

鏈表編寫鏈表將數字倒序輸出的C語言程序。(我們C語言老師講的!)-創(chuàng)新互聯

#include "stdio.h"
#include "stdlib.h"

struct shao{
int num;
struct shao *next;
};

void main()
{
int n;
struct shao *head=NULL,*p1,*p2;

printf("請輸入要參加幾個數:");
scanf("%d",&n);

while(n<=0)
{
printf("錯誤!請重新輸入:");
scanf("%d",&n);
}

p1=(struct shao*)malloc(sizeof(struct shao));
p1->next=NULL;
head=p1;
printf("請輸入一個數:");
scanf("%d",&p1->num);

for(int i=2;i<=n;i++)
{
p2=(struct shao*)malloc(sizeof(struct shao));
printf("請輸入一個數:");
scanf("%d",&p2->num);
head=p2;

p2->next=p1;
p1=p2;
}

printf("倒序的結果是:");
for(i=0;head!=NULL;i++)
{
printf("%d ",head->num);
head=head->next;
}
printf(" ");
}

成都創(chuàng)新互聯公司自成立以來,一直致力于為企業(yè)提供從網站策劃、網站設計、網站建設、做網站、電子商務、網站推廣、網站優(yōu)化到為企業(yè)提供個性化軟件開發(fā)等基于互聯網的全面整合營銷服務。公司擁有豐富的網站建設和互聯網應用系統開發(fā)管理經驗、成熟的應用系統解決方案、優(yōu)秀的網站開發(fā)工程師團隊及專業(yè)的網站設計師團隊。
當前名稱:鏈表編寫鏈表將數字倒序輸出的C語言程序。(我們C語言老師講的!)-創(chuàng)新互聯
文章鏈接:http://weahome.cn/article/djidsc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部