當前位置:首頁 » 編程軟體 » 校運動編程

校運動編程

發布時間: 2022-09-09 05:26:05

『壹』 比賽結果統計(用c++編程)

100分。。。編兩個小時值了~~~
#include<iostream.h>
#include<string.h>
#include<ctype.h>

class School //學校
{
private:
char name[20];
int number;
int boy;
int girl;
public:
School *next;
void School_add();
void School_output(School *p);
int School_isexist(int a);
void School_show(int a);
void School_search(int a);
void School_addmark(int a,int b,int c);
void School_order(School *temp,int type);
};

class Sport //運動項目
{
private:
char name[20];
int isboy; //0為女項目,1為男項目
int is3; //0為取前五名,1為取前五名
int number; //項目編號
int first;
int second;
int third;
int fourth;
int fifth;
public:
Sport *next;
int Sport_isexist(int a);
void Sport_add();
void Sport_output(Sport *p);
void Sport_search(int a);
};

int getint(int a) //字元轉換成數字
{
return (int)(a-'0');
}

School* head1; //定義倆個類指針
Sport* head2;

void School::School_add() //添加學校
{
School* p;
int mark=0;
p=new School;
cout<<"請輸入學校的名稱:";
cin>>p->name;
char c;
while (mark!=1)
{
cout<<"請輸入學校的編號:";
cin>>c;
if (!isdigit(c))//是否為數字
{
cout<<"數據非法"<<endl;
}
else
{
mark=1;
p->number=c;
}
p->boy=0;
p->girl=0;
p->next=head1->next;
head1->next=p;
cout<<"成功添加了一個學校"<<endl;
cout<<"是否還要添加學校?(Y/N)"<<endl;
char input;
cin>>input;
switch(input)
{
case 'Y':
mark=0;
School_add();
case 'N':
mark=1;
return;
}
}
delete p;
}

void School::School_output(School *p)//輸出學校
{
cout<<"當前學校(名稱) 編號 總分\t\n";
p=head1;
p=p->next;
while(p)
{
cout<<p->name<<"\t\t"<<getint(p->number)<<"\t"<<" \t "<<(p->girl+p->boy)<<endl;
p=p->next;
}
}

int School::School_isexist(int a)//檢驗學校是否存在
{
int b=0;
School *p;
p=head1;
p=p->next;
while(p)
{
if(p->number==a)
{
return 1;
}
p=p->next;
}
return 0;
}

void School::School_show(int a)//輸出所有學校
{
School *p;
p=head1;
p=p->next;
while(p)
{
if(p->number==a)
{
cout<<p->name<<" "<<endl;
return;
}
p=p->next;
}
cout<<"無";
}

void School::School_search(int a)//按編號搜索學校
{
School *p;
p=head1;
p=p->next;
while(p)
{
if(p->number==a)
{
cout<<"學校名稱:"<<p->name<<" "<<"總分:"<<(p->boy+p->girl)<<" ";
return;
}
p=p->next;
}
cout<<"無此編號";
}

void School::School_addmark(int a,int b,int c)//a為分數,b為學校編號,c=1表示男,c=0表示女
{
School *p;
p=head1;
p=p->next;
while(p)
{
if(p->number==b)
{
if(c=='1')
{
p->boy=p->boy+a;
}
else
{
p->girl=p->girl+a;
}
}
p=p->next;
}
}

void School::School_order(School *temp,int type)
{
School* q,*small;
School* temp1;
temp1=new School;
temp1->next=NULL;
while(q&&small)
{
switch(type)
{
case 0: //按總分排序
for(q=head1;q=q->next;)
for(small=head1;small=small->next;)
{
if( (q->boy+q->girl)<(small->boy+small->girl) )
{
temp1->girl=q->girl;
q->girl=small->girl;
small->girl=temp1->girl;
temp1->boy=q->boy;
q->boy=small->boy;
small->boy=temp1->boy;
strcpy(temp1->name,q->name);
strcpy(q->name,small->name);
strcpy(small->name,temp1->name);
temp1->number=q->number;
q->number=small->number;
small->number=temp1->number;
}
}
break;
case 3: //按學校編號排序
for(q=head1;q=q->next;)
for(small=head1;small=small->next;)
{
if(q->number<small->number)
{
temp1->girl=q->girl;
q->girl=small->girl;
small->girl=temp1->girl;
temp1->boy=q->boy;
q->boy=small->boy;
small->boy=temp1->boy;
strcpy(temp1->name,q->name);
strcpy(q->name,small->name);
strcpy(small->name,temp1->name);
temp1->number=q->number;
q->number=small->number;
small->number=temp1->number;
}
}
break;
default:
cout<<"error"<<endl;
break;
}
}
}

int Sport::Sport_isexist(int a) //檢查運動項目(編號)是否已經存在
{
int b=0;
Sport *p;
p=head2;
p=p->next;
while(p)
{
if(p->number==a)
{
return 1;
}
p=p->next;
}
return 0;
}

void Sport::Sport_add() //添加項目
{
Sport * p;
int mark=0;
p=new Sport;
cout<<"請輸入項目名稱:";
cin>>p->name;
char c;
while (mark!=1)
{
cout<<"請輸入項目編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(Sport_isexist(c))
{
cout<<"該編號已存在"<<endl;
}
else
{
mark=1;
p->number=c;
}
}
}
mark=0;
while (mark!=1)
{
cout<<"請輸入項目類型(0為女子項目,1為男子項目):";
cin>>c;
p->isboy=(int)(c-'0');//字元轉換成數字
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else if(p->isboy<0||p->isboy>1)
{
cout<<"數據非法"<<endl;
}
else
{
mark=1;
p->isboy=c;
}
}
mark=0;
while (mark!=1)
{
cout<<"請輸入項目名次情況(0為取前3名,1為取前5名):";
cin>>c;
p->is3=(int)(c-'0');
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else if(p->is3<0||p->is3>1)
{
cout<<"數據非法"<<endl;
}
else
{
mark=1;
p->is3=c;
}
}
mark=0;
School sh;
while (mark!=1)
{
cout<<"請輸入第一名學校的編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(!sh.School_isexist(c))
{
cout<<"該學校不存在,請先添加";
}
else
{
mark=1;
p->first=c;
if(p->is3=='0')
sh.School_addmark(5,c,p->isboy);
else
sh.School_addmark(7,c,p->isboy);
}
}
}
mark=0;
while (mark!=1)
{
cout<<"請輸入第二名學校的編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(!sh.School_isexist(c))
{
cout<<"該學校不存在,請先添加";
}
else
{
mark=1;
p->second=c;
if(p->is3=='0')
sh.School_addmark(3,c,p->isboy);
else
sh.School_addmark(5,c,p->isboy);
}
}
}
mark=0;
while (mark!=1)
{
cout<<"請輸入第三名學校的編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(!sh.School_isexist(c))
{
cout<<"該學校不存在,請先添加";
}
else
{
mark=1;
p->third=c;
if(p->is3=='0')
sh.School_addmark(2,c,p->isboy);
else
sh.School_addmark(3,c,p->isboy);
}
}
}
mark=0;
if(p->is3=='1')
{
while (mark!=1)
{
cout<<"請輸入第四名學校的編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(!sh.School_isexist(c))
{
cout<<"該學校不存在,請先添加";
}
else
{
mark=1;
p->fourth=c;
sh.School_addmark(2,c,p->isboy);
}
}
}
mark=0;
while (mark!=1)
{
cout<<"請輸入第五名學校的編號:";
cin>>c;
if (!isdigit(c))
{
cout<<"數據非法"<<endl;
}
else
{
if(!sh.School_isexist(c))
{
cout<<"該學校不存在,請先添加"<<endl;
}
else
{
mark=1;
p->fifth=c;
sh.School_addmark(1,c,p->isboy);
}
}
}
}
else
{
p->fourth='0';
p->fifth='0';
}
p->next=head2->next;
head2->next=p;
cout<<"成功添加了一個運動項目"<<endl;
}

void Sport::Sport_output(Sport *p) //輸出項目的情況
{
p=head2;
p=p->next;
cout<<"當前項目名稱"<<"\t"<<"編號"<<" "<<"3/5"<<" "<<"第一名"<<" "
<<"第二名"<<" "<<"第三名"<<" "<<"第四名"<<" "<<"第五名"<<" "<<endl;
School sh;
while(p)
{
cout<<p->name<<"\t"<<" "<<getint(p->number)<<" " <<getint(p->isboy)<<" "<<getint(p->is3)<<" "<<" ";
sh.School_show(p->first);
sh.School_show(p->second);
sh.School_show(p->third);
sh.School_show(p->fourth);
sh.School_show(p->fifth);
p=p->next;
cout<<"\n";

}
cout<<endl;
}

void Sport::Sport_search(int a) //搜索項目
{
Sport *p;
School sh;
p=head2;
p=p->next;
while(p)
{
if(p->number==a)
{
cout<<"項目名:"<<p->name<<endl<<"項目類型:";
if(p->isboy==1)
{
cout<<"男子項目";
}
else
{
cout<<"女子項目";
}
cout<<endl<<"第一名:";
sh.School_show(p->first);
cout<<endl<<"第二名:";
sh.School_show(p->second);
cout<<endl<<"第三名:";
sh.School_show(p->third);
cout<<endl<<"第四名:";
sh.School_show(p->fourth);
cout<<endl<<"第五名:";
sh.School_show(p->fifth);
return;
}
p=p->next;
}
cout<<"無此編號";
}

void main() //主函數
{
head1=new School;
head1->next=NULL;
head2=new Sport;
head2->next=NULL;
School sh;
Sport sp;
School* p1;
Sport* p2;
p1=head1;
p1=p1->next;
p2=head2;
p2=p2->next;
char choose;
char temp;
int a=1;
while(a!=0)
{
cout<<" "<<endl;
cout<<" 歡迎使用比賽結果統計系統 "<<endl;
cout<<" ----------------------------------------------------------"<<endl;
cout<<" "<<endl;
cout<<" 註:輸入運動項目之前請輸入學校 "<<endl;
cout<<" -------請選擇(0-6):------ "<<endl;
cout<<" 1.輸入學校(輸入N結束) 2.輸入運動項目 "<<endl;
cout<<" 3.按學校編號輸出總分 4.按學校總分排序 "<<endl;
cout<<" 5.按學校編號查詢 6.按項目編號查詢 "<<endl;
cout<<" 0.退出 "<<endl;
cout<<" "<<endl;
cout<<" ----------------------------------------------------------"<<endl;

cin>>choose;
if (!isdigit(choose))
{
cout<<"操作非法1"<<endl;
}
else
{
switch(getint(choose))
{

case 1:
sh.School_add();
break;
case 2:
sp.Sport_output(p2);
sh.School_output(p1);
sp.Sport_add();
break;
case 3:
sh.School_order(p1,3);
sh.School_output(p1);
break;
case 4:
sh.School_order(p1,0);
sh.School_output(p1);
break;
case 5:
cout<<"請輸入學校編號:";
cin>>temp;
sh.School_search(temp);
break;
case 6:
cout<<"請輸入項目編號:";
cin>>temp;
sp.Sport_search(temp);
break;
case 0:
a=0;
break;
default:
cout<<"操作非法\n";
}
}
}
}

『貳』 c語言程序設計。。設計一個運動會管理系統,用於管理比賽時體操、跳水、滑冰等賽事裁判員對賽事的評分。

這需要找一個學過編程的來設計哦

『叄』 機器人編程和少兒編程有什麼區別

機器人編程:機器人編程就是為使機器人完成某種任務而設置的動作順序描述。機器人運動和作業的指令都是由程序進行控制,常見的編制方法有兩種,示教編程方法和離線編程方法。其中示教編程方法包括示教、編輯和軌跡再現,可以通過示教盒示教和導引式示教兩種途徑實現。由於示教方式實用性強,操作簡便,因此大部分機器人都採用這種方式。離線編程方法是利用計算機圖形學成果,藉助圖形處理工具建立幾何模型,通過一些規劃演算法來獲取作業規劃軌跡。與示教編程不同,離線編程不與機器人發生關系,在編程過程中機器人可以照常工作。
少兒編程:少兒編程教育是通過編程游戲啟蒙、可視化圖形編程等課程,培養學生的計算思維和創新解難能力的課程。一般來說,針對6-18歲的少年兒童開展的編程教育,現在,最常見的形式是線上和線下模式相結合的課外培訓。根據先易後難的學習進程,少兒編程教學可以大致分為兩類:一類是Scratch或是仿Scratch的圖形化編程教學,以培養興趣、鍛煉思維為主,趣味性較強。在這里,可以創造屬於自己的動畫,故事,音樂和游戲,這個過程其實就像搭積木一樣簡單。

『肆』 c語言編程,謝謝大家了!

#include<stdio.h>typedef struct{int xihao;char name[20];int num;int mingci;int socore;
}althete;void main(){ althete a[20]; int i,k=1,j; for(i=0;k==1;i++) { printf("請輸入系號:\n"); scanf("%d",&a[i].xihao); printf("請輸入姓名:\n"); scanf("%s",&a[i].name); printf("請輸入運動項目編號:\n"); scanf("%d",&a[i].num); printf("請輸入名次:\n"); scanf("%d",&a[i].mingci); a[i].socore=0; if(a[i].mingci==1) a[i].socore+=7; else if(a[i].mingci==2) a[i].socore+=5; else if(a[i].mingci==3) a[i].socore+=3; else if(a[i].mingci==4) a[i].socore+=2; else if(a[i].mingci=5) a[i].socore+=1;
printf("輸入完成,是否繼續輸入?若繼續請按1,否按2"); scanf("%d",&j); if(j==1) k=1; else k=0;
} althete xx; for(int n=1;n<i;n++) { for(j=0;j<i-n;j++) if(a[j].socore<a[j+1].socore) { xx=a[j]; a[j]=a[j+1]; a[j+1]=xx; } } for(j=0;j<i;j++) { printf("%d\n",a[j].xihao); printf("%d\n",a[j].socore); printf("\n\n\n"); }}
我暫時只能寫這么多了,沒空了
留給你參考參考吧!

『伍』 校際運動會管理系統C++程序設計

#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <conio.h>
#define n 5 /*設定,可更改*/
#define m 3 /*設定,可更改*/
#define w 2 /*設定,可更改*/

struct achievement /* 定義表示成績的結構體 */
{int schoolnumber;/* 學校編號 */
char name[20]; /* 姓名 */
int mark; /* 分數 */
int result;};

struct pro /* 表示項目的結構體 */
{int tag;/* 項目編號 */
struct achievement ach[m+w];
int number;
};

struct Node
{struct pro date;
struct Node *next;
};

main()
{
int i,j,t;
int x[n]={0};int y[n]={0}; /* x[n]和y[n]分別表示男子和女子團體總分 */
struct Node *head;
struct Node *p;
struct Node *q;
if((head=(struct Node*)malloc(sizeof(struct Node)))==NULL) exit(1);
head->next=NULL; /* 初始化單鏈表 */
p=head;
for(i=0;i<m+w;i++) /* 輸入成績 */
{
j=i+1;
printf("請輸入第%d個項目的信息\n",j);
p->date.number=j;
printf("所取的名次數為:");
scanf("%d",&p->date.tag);
while(p->date.tag!=3&&p->date.tag!=5)
{ printf("輸入有誤,請重新輸入!");
getchar(); /*加入此函數避免輸入錯誤時程序進入無限循環*/
getchar();
printf("所取的名次數為:");
scanf("%d",&p->date.tag);
}
t=1;
while(t<=p->date.tag)
{
printf("第%d名的名字:",t);
scanf("%s",p->date.ach[t-1].name);
printf("第%d名的學校:",t);
scanf("%d",&p->date.ach[t-1].schoolnumber);
printf("第%d名的分數:",t);
scanf("%d",&p->date.ach[t-1].mark);
p->date.ach[t-1].result=t;
t++;
}
if(j!=m+w)/* 注意這里 */
{q=(struct Node*)malloc(sizeof(struct Node)); /* 生成新結點 */
p->next=q;
p=q;
p->next=NULL;
}
}
for(i=0;i<n;i++) /* 產生成績單 */
{
j=i+1;
printf("\n學校%d成績單:\n",j);
p=head;
while(p!=NULL)
{
t=1;
while(t<=p->date.tag)
{
if(p->date.ach[t-1].schoolnumber==j)
{
printf("獲獎項目:%d ",p->date.number);
printf("名次:%d ",p->date.ach[t-1].result);
printf("獲獎人姓名:%s ",p->date.ach[t-1].name);
printf("所得分數:%d \n",p->date.ach[t-1].mark);
if(p->date.number<=m)
x[i]=x[i]+p->date.ach[t-1].mark;
else
y[i]=y[i]+p->date.ach[t-1].mark;
}

『陸』 java編程.現有如下學生參加學校運動會

遍歷,String有個方法是startWith

『柒』 你好我是初學者只會一些簡單的c語言編程。學校運動管理系統我沒接觸過不知道怎麼做,你能把你做的給我看嗎

一個完整的系統,並不是一個人能夠完成的。因為它需要我們懂得許多方面的知識,一個人很難掌握這些的。在做系統前還需要可行性分析、需求分析等耗時但很關鍵的步驟,這些決定了你的系統是否能夠順利完成正常工作。所以如果你需要做該系統,就該多召集一些有這方面能力的人,合理分配任務,達到較高質量的完成任務。

『捌』 C語言課程設計~~~ 要求編寫一段程序,題目是《校際運動會管理系統》

我這是源代碼已經調試過了,在VC++上運行成功了。
#include "stdio.h" /*I/O函數*/
#include "stdlib.h" /*其它說明*/
#include "string.h" /*字元串函數*/
#include "conio.h" /*屏幕操作函數*/
#include "mem.h" /*內存操作函數*/
#include "ctype.h" /*字元操作函數*/
#include "alloc.h" /*動態地址分配函數*/
struct score
{
int mingci;
char xuehao[8];
char mingzi[20];
float score[6];
}data,info[1000];
int i,j,k=0;
char temp[20],ch;
FILE *fp,*fp1;

void shuru()
{
if((fp=fopen("s_score.txt","ab+"))==NULL)
{
printf("cannot open this file.\n");
getch();exit(0);
}
for(i=0;i<=1000;i++)
{
printf("\nPlease shuru xuehao:");
gets(data.xuehao);
printf("Please shuru mingzi:");
gets(data.mingzi);
printf("Please shuru yuwen score:");
gets(temp);data.score[0]=atof(temp);
printf("Please shuru shuxue score:");
gets(temp);data.score[1]=atof(temp);
printf("Please input yingyu score:");
gets(temp);data.score[2]=atof(temp);
printf("Please shuru wuli score:");
gets(temp);data.score[3]=atof(temp);
printf("Please shur huaxue score:");
gets(temp);data.score[4]=atof(temp);
data.score[5]=data.score[0]+data.score[1]+data.score[2]+data.score[3]+data.score[4];
fwrite(&data,sizeof(data),1,fp);
printf("another?y/n");
ch=getch();
if(ch=='n'||ch=='N')
break;
} fclose(fp);
}
void xianshi()
{
float s;int n;
if((fp=fopen("s_score.txt","rb+"))==NULL)
{
printf("Cannot reading this file.\n");
exit(0);
}
for(i=0;i<=1000;i++)
{
if((fread(&info[i],sizeof(info[i]),1,fp))!=1)
break;
}
printf("\nxuehao mingzi yuwen shuxue yingyu wuli huauxue zhongfen\n");
for(j=0,k=1;j<i;j++,k++)
{
info[j].mingci=k;
printf("%6s %8s %3.1f %3.1f %3.1f %3.1f %3.1f %3.1f\n",info[j].xuehao,info[j].mingzi,info[j].score[0],info[j].score[1],info[j].score[2],info[j].score[3],info[j].score[4],
info[j].score[5]);
}
getch();
fclose(fp);
}

void xiugai()
{
if((fp=fopen("s_score.txt","rb+"))==NULL||(fp1=fopen("temp.txt","wb+"))==NULL)
{
printf("Cannot open this file.\n");
exit(0);
}
printf("\nPLease shuru xiugai xuehao:");
scanf("%d",&i); getchar();
while((fread(&data,sizeof(data),1,fp))==1)
{
j=atoi(data.xuehao);
if(j==i)
{
printf("xuehao:%s\nmingzi:%s\n",data.xuehao,data.mingzi);
printf("Please shuru mingzi:");
gets(data.mingzi);
printf("Please shuru yuwen score:");
gets(temp);data.score[0]=atof(temp);
printf("Please shuru shuxue score:");
gets(temp);data.score[1]=atof(temp);
printf("Please input yingyu score:");
gets(temp);data.score[2]=atof(temp);
printf("Please input wuli score:");
gets(temp);data.score[3]=atof(temp);
printf("Please input huaxue score:");
gets(temp);data.score[4]=atof(temp);
data.score[5]=data.score[0]+data.score[1]+data.score[2]+data.score[3]+data.score[4];

} fwrite(&data,sizeof(data),1,fp1);
}
fseek(fp,0L,0);
fseek(fp1,0L,0);
while((fread(&data,sizeof(data),1,fp1))==1)
{
fwrite(&data,sizeof(data),1,fp);
}

fclose(fp);
fclose(fp1);
}
void chazhao()
{
if((fp=fopen("s_score.txt","rb"))==NULL)
{
printf("\nCannot open this file.\n");
exit(0);
}
printf("\nPLease shuru xuehao chakan:");
scanf("%d",&i);
while(fread(&data,sizeof(data),1,fp)==1)
{
j=atoi(data.xuehao);
if(i==j)
{
printf("xuehao:%s mingzi:%s\nyuwen:%f\n shuxue:%f\n yingyu:%f\n wuli:%f\n huaxue:%f\n ",data.xuehao,data.mingzi,data.score[0],data.score[1],data.score[2],data.score[3],data.score[4],data.score[5]);
}getch();
}
}
void shanchu()
{
if((fp=fopen("s_score.txt","rb+"))==NULL||(fp1=fopen("temp.txt","wb+"))==NULL)
{
printf("\nopen score.txt was failed!");
getch();
exit(0);
}
printf("\nPlease input ID which you want to del:");
scanf("%d",&i);getchar();
while((fread(&data,sizeof(data),1,fp))==1)
{
j=atoi(data.xuehao);
if(j==i)
{

printf("Anykey will delet it.\n");
getch();
continue;
}
fwrite(&data,sizeof(data),1,fp1);
}
fclose(fp);
fclose(fp1);
remove("s_score.txt");
rename("temp.txt","s_score.txt");
printf("Data delet was succesful!\n");
printf("Anykey will return to main.");
getch();
}
main()
{
while(1)
{
clrscr(); /*清屏幕*/
gotoxy(1,1); /*移動游標*/
textcolor(YELLOW); /*設置文本顯示顏色為黃色*/
textbackground(BLUE); /*設置背景顏色為藍色*/
window(1,1,99,99); /* 製作顯示菜單的窗口,大小根據菜單條數設計*/
clrscr();
printf("*************welcome to use student manage******************\n");
printf("*************************menu********************************\n");
printf("* ========================================================= * \n");
printf("* 1>shuru 2>xiugai * \n");
printf("* 3>shanchu 4>chazhao * \n");
printf("* 5>xianshi 6>exit * \n");
printf("* * \n");
printf("* --------------------------------------------------------- * \n");
printf(" Please input which you want(1-6):");
ch=getch();
switch(ch)
{
case '1':shuru();break;
case '2':xiugai(); break;
case '3':shanchu(); break;
case '4':chazhao(); break;
case '5':xianshi(); break;
case '6':exit(0);
default: continue;
}
}

『玖』 C語言程序設計運動會成績管理系統(我想要的是第3題的!!)

額 就兩種情況嘛! 到了 或者沒有到! 暈死! 在計算機中0是假1是真
只有兩種情況! 隨便定義一下判斷一下再輸出就行!

『拾』 C++編程,是校園運動會系統管理,一定的是C++的,不能用C語言,要求如下:

一個系統管理的軟體,代碼量很大!使用C++的意思是要使用創建相關的類處理問題,而不是簡單面向過程處理。這個幫不了你,因為代碼量真的太多了,而且很費時間。沒人願意重頭幫你做的。

熱點內容
phpcurlxml 發布:2025-03-26 15:44:58 瀏覽:727
安卓手機如何清空流量 發布:2025-03-26 15:43:45 瀏覽:349
sqlserver圖標 發布:2025-03-26 15:29:09 瀏覽:457
音頻去噪演算法 發布:2025-03-26 15:17:58 瀏覽:556
透明pp文件夾 發布:2025-03-26 15:15:52 瀏覽:145
perl的編譯器 發布:2025-03-26 15:12:25 瀏覽:360
linuxug 發布:2025-03-26 15:12:21 瀏覽:510
濟寧編程 發布:2025-03-26 15:11:43 瀏覽:798
手機如何緩存電影 發布:2025-03-26 15:10:03 瀏覽:613
phppost類 發布:2025-03-26 15:10:01 瀏覽:204