亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

item

  • GoAhead Webs 2.1.5

    ===================================== GoAhead WebServer 2.1.8 Release Notes ===================================== .. NOTES: .. This document is maintained using the reStructuredText markup system. .. You may download this from <http://docutils.sf.net>. Also note that running .. the docutils code requires that a version of Python version 2.1 or later .. be installed on the machine. Since the GoAhead release procedure itself .. runs in Python, this should not be a problem. .. .. To add new entries to the release notes, follow the markup shown below .. (releases should be underlined with a row of '=' characters, each item .. noted within a release should be underlined with '-' characters.

    標簽: web server embedded arm

    上傳時間: 2016-01-30

    上傳用戶:zrxkn

  • GoAhead Webs 2.1.5 embedded webserver arm

    ===================================== GoAhead WebServer 2.1.8 Release Notes ===================================== .. NOTES: .. This document is maintained using the reStructuredText markup system. .. You may download this from <http://docutils.sf.net>. Also note that running .. the docutils code requires that a version of Python version 2.1 or later .. be installed on the machine. Since the GoAhead release procedure itself .. runs in Python, this should not be a problem. .. .. To add new entries to the release notes, follow the markup shown below .. (releases should be underlined with a row of '=' characters, each item .. noted within a release should be underlined with '-' characters.

    標簽: web html embed server arm small http

    上傳時間: 2016-01-30

    上傳用戶:zrxkn

  • 運動會源代碼

    #include <malloc.h>       #include <stdio.h>       #include <stdlib.h>       #include <string.h>       #define NULL 0      #define MaxSize 30          typedef struct athletestruct /*運動員*/     {         char name[20];          int score; /*分數*/         int range; /**/         int item; /*項目*/     }ATH;     typedef struct schoolstruct /*學校*/     {         int count; /*編號*/         int serial; /**/          int menscore; /*男選手分數*/         int womenscore; /*女選手分數*/         int totalscore; /*總分*/         ATH athlete[MaxSize]; /**/         struct schoolstruct *next;      }SCH;         int nsc,msp,wsp;      int ntsp;      int i,j;      int overgame;      int serial,range;      int n;      SCH *head,*pfirst,*psecond;      int *phead=NULL,*pafirst=NULL,*pasecond=NULL;     void create();         void input ()     {         char answer;          head = (SCH *)malloc(sizeof(SCH)); /**/         head->next = NULL;         pfirst = head;          answer = 'y';         while ( answer == 'y' )         {         Is_Game_DoMain:         printf("\nGET Top 5 when odd\nGET Top 3 when even");         printf("\n輸入運動項目序號 (x<=%d):",ntsp);         scanf("%d",pafirst);         overgame = *pafirst;         if ( pafirst != phead )         {             for ( pasecond = phead ; pasecond < pafirst ; pasecond ++ )             {                 if ( overgame == *pasecond )                 {                     printf("\n這個項目已經存在請選擇其他的數字\n");                     goto Is_Game_DoMain;                 }             }         }         pafirst = pafirst + 1;         if ( overgame > ntsp )         {             printf("\n項目不存在");             printf("\n請重新輸入");             goto Is_Game_DoMain;         }         switch ( overgame%2 )         {         case 0: n = 3;break;         case 1: n = 5;break;         }         for ( i = 1 ; i <= n ; i++ )         {         Is_Serial_DoMain:         printf("\n輸入序號 of the NO.%d (0<x<=%d): ",i,nsc);                 scanf("%d",&serial);         if ( serial > nsc )          {             printf("\n超過學校數目,請重新輸入");             goto Is_Serial_DoMain;         }         if ( head->next == NULL )          {             create();         }         psecond = head->next ;          while ( psecond != NULL )          {             if ( psecond->serial == serial )             {                 pfirst = psecond;                 pfirst->count = pfirst->count + 1;                 goto Store_Data;             }             else             {                 psecond = psecond->next;             }         }         create();         Store_Data:                 pfirst->athlete[pfirst->count].item = overgame;         pfirst->athlete[pfirst->count].range = i;         pfirst->serial = serial;         printf("Input name:) : ");                 scanf("%s",pfirst->athlete[pfirst->count].name);         }         printf("\n繼續輸入運動項目(y&n)?");         answer = getchar();         printf("\n");         }     }         void calculate() /**/     {         pfirst = head->next;         while ( pfirst->next != NULL )         {             for (i=1;i<=pfirst->count;i++)             {                 if ( pfirst->athlete[i].item % 2 == 0 )                  {                     switch (pfirst->athlete[i].range)                     {                     case 1:pfirst->athlete[i].score = 5;break;                     case 2:pfirst->athlete[i].score = 3;break;                     case 3:pfirst->athlete[i].score = 2;break;                     }                 }                 else                  {                     switch (pfirst->athlete[i].range)                     {                     case 1:pfirst->athlete[i].score = 7;break;                     case 2:pfirst->athlete[i].score = 5;break;                     case 3:pfirst->athlete[i].score = 3;break;                     case 4:pfirst->athlete[i].score = 2;break;                     case 5:pfirst->athlete[i].score = 1;break;                     }                 }                 if ( pfirst->athlete[i].item <=msp )                  {                     pfirst->menscore = pfirst->menscore + pfirst->athlete[i].score;                 }                 else                  {                     pfirst->womenscore = pfirst->womenscore + pfirst->athlete[i].score;                 }             }             pfirst->totalscore = pfirst->menscore + pfirst->womenscore;             pfirst = pfirst->next;         }     }         void output()     {         pfirst = head->next;         psecond = head->next;         while ( pfirst->next != NULL )          {             // clrscr();              printf("\n第%d號學校的結果成績:",pfirst->serial);             printf("\n\n項目的數目\t學校的名字\t分數");             for (i=1;i<=ntsp;i++)              {                 for (j=1;j<=pfirst->count;j++)                  {                     if ( pfirst->athlete[j].item == i )                     {                                                                         printf("\n %d\t\t\t\t\t\t%s\n %d",i,pfirst->athlete[j].name,pfirst->athlete[j].score);break;                                             }                 }             }             printf("\n\n\n\t\t\t\t\t\t按任意建 進入下一頁");             getchar();             pfirst = pfirst->next;         }     //  clrscr();          printf("\n運動會結果:\n\n學校編號\t男運動員成績\t女運動員成績\t總分");         pfirst = head->next;         while ( pfirst->next != NULL )         {             printf("\n %d\t\t %d\t\t %d\t\t %d",pfirst->serial,pfirst->menscore,pfirst->womenscore,pfirst->totalscore);             pfirst = pfirst->next;         }         printf("\n\n\n\t\t\t\t\t\t\t按任意建結束");         getchar();     }         void create()     {                 pfirst = (struct schoolstruct *)malloc(sizeof(struct schoolstruct));         pfirst->next = head->next ;         head->next = pfirst ;                 pfirst->count = 1;         pfirst->menscore = 0;         pfirst->womenscore = 0;         pfirst->totalscore = 0;     }     void Save()     {FILE *fp;     if((fp = fopen("school.dat","wb"))==NULL)     {printf("can't open school.dat\n");     fclose(fp);     return;     }     fwrite(pfirst,sizeof(SCH),10,fp);     fclose(fp);     printf("文件已經成功保存\n");     }         void main()     {         system("cls");         printf("\n\t\t\t 運動會分數統計\n");         printf("輸入學校數目 (x>= 5):");         scanf("%d",&nsc);          printf("輸入男選手的項目(x<=20):");         scanf("%d",&msp);          printf("輸入女選手項目(<=20):");         scanf("%d",&wsp);          ntsp = msp + wsp;                  phead = (int *)calloc(ntsp,sizeof(int));         pafirst = phead;         pasecond = phead;         input();         calculate();          output();         Save();     }             

    標簽: 源代碼

    上傳時間: 2016-12-28

    上傳用戶:150501

  • LTE-Advanced+Relay+Technology

    LTE-Advanced becomes a truly global standard for 4G cellular communications. Relay, as one of the key technologies of LTE-Advanced, can significantly extend the coverage, and improve the system throughput. LTE-A standards and tech- nologies were described in several recent books where the limited pages for relay feature prevent the detailed explanations of the technology. In this book, we tried to provide an in-depth description of LTE-A relay development. More specifically, significant portions are spent on relay channel modeling and potential technologies during the study item phase of the development, although some of those tech- nologies, such as Type 2 cooperative relay, multi-hop relay, relay with backhaul of carrier aggregation, were not standardized in Release 10 LTE.

    標簽: LTE-Advanced Technology Relay

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • RFID+and+Sensor+Network+Automation

    With the continued growth in the world's population, there is a need to ensure availability of enough food to feed everyone. Advances in science and technology have helped not only to increase food production, but also to reduce food wastage. However, the latter has the potential to be improved to a significant extent through appropriate matching of supply and demand, and with proper handling during storage and transit. Given the amount of food wastage that occurs after a food item leaves the “farm” on its way to the “fork,” and the availability of means to reduce such wastage, there really is no excuse for feigned ignorance.

    標簽: Automation Industry Network Sensor RFID Food and the in

    上傳時間: 2020-06-08

    上傳用戶:shancjb

  • Arduino Adventures Escape from Gemini Station

    Fun. We (your authors) wanted a word to describe our ultimate goal for this book, as well as a word we hope you (our reader) will use to describe it, and that’s the one we chose. There are others goals, of course, but in the end, when you’ve finished the book, we’re hoping you’ll have enjoyed the activities described in these pages. Many books use the Introduction to explain exactly what the book is about, what the reader will learn, what the reader needs (a skill or maybe an item or piece of software), and what the reader will be left with when that last page is completed. And this Introduction will do those things, but … hopefully it’ll make you excited to get started.

    標簽: Adventures Arduino Station Escape Gemini from

    上傳時間: 2020-06-09

    上傳用戶:shancjb

  • USB2.0 協議中文版

    此文檔包括USB協議的全部協議說明,包括USBhost主站和Device從站的協議格式,從識別USB設備類型,到識別USB設備描述符,對設備描述符進行拆分和加密都有描述,根據設備描述符可以將數據部分進行拆解,對每個item都有詳細的解釋,我是之前對USB完全不了解,遇到問題什么都解決不了,連什么是主站什么是從站都分不清,調試期間一直連不上USB設備,期間還弄得兩個Device設備相互連接,花了很多時間都沒有搞定,最終還是通過看這個手冊才學到一些,最讓我開心的是這個文檔是中文的,對于英語水平不是很好的朋友是個不錯的選擇,我通過這本書做成了一個自定義的從站,還做了一個可以識別三種設備類的主站,包括HID,U盤存儲類等等,而且主站能夠識別市場上現有的鍵盤,我試了兩種型號的,鼠標試了三種,包括聯想電腦,戴爾電腦,清華同方的,全部都能正常識別,能夠拆分鼠標和鍵盤傳遞的信息,感覺非常有用,請小伙伴們放心下載,有什么問題不懂得,可以私信我

    標簽: usb

    上傳時間: 2021-12-09

    上傳用戶:qdxqdxqdxqdx

  • 恒凱電子數據采集卡USBV1.2實驗平臺Labview源程序

    恒凱電子數據采集卡USBV1.2實驗平臺Labview源程序,采集卡可以在淘寶官方網店進行購買,具體連接如下:https://item.taobao.com/item.htm?id=524320311827&_u=al01rc3f269 有具體的技術指導,方便各位開發自己的數據采集平臺。

    標簽: 電子 數據采集 usbv1 實驗 平臺 labview 源程序

    上傳時間: 2022-06-16

    上傳用戶:shjgzh

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲丁香婷深爱综合| 亚洲一区二区三区色| 久久成人这里只有精品| 国产精品视频久久一区| 久久亚洲欧美| 亚洲人成网站777色婷婷| 亚洲黄页视频免费观看| 国产亚洲毛片在线| 欧美精品导航| 亚洲欧美在线x视频| 亚洲欧洲一区二区天堂久久| 国产在线精品自拍| 欧美日韩另类在线| 久久视频这里只有精品| 宅男噜噜噜66一区二区66| 亚洲国产黄色片| 一区二区三区中文在线观看| 国产精品视频第一区| 欧美精品自拍| 欧美日韩一区国产| 欧美午夜免费电影| 欧美电影免费| 国产专区一区| 亚洲精品永久免费| 国产日韩欧美中文在线播放| 欧美理论在线播放| 国产一区免费视频| 国产欧美日韩综合一区在线观看 | 久久欧美肥婆一二区| 久久精品中文字幕一区二区三区| 亚洲永久免费视频| 欧美一区二区三区在线看| 一区二区三区av| 欧美一区二区视频在线观看| 久久天天狠狠| 欧美亚州一区二区三区| 亚洲区一区二区三区| 99精品免费| 亚洲欧美日韩区| 可以免费看不卡的av网站| 欧美日韩黄视频| 国产欧美视频一区二区三区| 亚洲精品1区2区| 欧美在线在线| 欧美久久在线| 国产午夜精品理论片a级探花 | 欧美日韩四区| 黄网站色欧美视频| 一区二区三区高清在线| 中文久久乱码一区二区| 乱中年女人伦av一区二区| 亚洲精品日产精品乱码不卡| 亚洲视频免费看| 欧美日韩小视频| 亚洲欧美日韩国产中文| 麻豆精品91| 国产日韩成人精品| 久久精彩视频| 国产欧美日韩综合一区在线观看| 一区二区三区国产精品| 欧美精品国产精品| 国内揄拍国内精品久久| 午夜欧美大片免费观看| 国产精品扒开腿爽爽爽视频| 亚洲精品免费在线| 久久精品国产免费| 韩国成人福利片在线播放| 国产精品美女久久福利网站| 久久精品最新地址| 影音先锋久久资源网| 亚洲国内精品| 欧美三级日韩三级国产三级| 亚洲欧美成aⅴ人在线观看| 欧美日韩美女一区二区| 亚洲伊人色欲综合网| 欧美小视频在线观看| 久久久久这里只有精品| 欧美性jizz18性欧美| 久久精品国产成人| 欧美专区在线观看一区| 亚洲麻豆国产自偷在线| 国产精品久久久久久久久久尿| 精品999日本| 欧美午夜精品久久久久久超碰| 亚洲在线第一页| 国产精品扒开腿做爽爽爽视频| 国产在线视频欧美一区二区三区| 亚洲午夜在线| 最近看过的日韩成人| 一区二区在线视频播放| 极品少妇一区二区| 伊人久久噜噜噜躁狠狠躁| 在线亚洲免费视频| 亚洲激情二区| 亚洲伦伦在线| 亚洲理论电影网| 亚洲毛片av| 午夜精品久久99蜜桃的功能介绍| 亚洲综合电影| 欧美在线日韩| 欧美日韩久久不卡| 久久久美女艺术照精彩视频福利播放 | 国产欧美精品一区aⅴ影院| 亚洲精品视频免费观看| 黄色成人免费网站| 欧美小视频在线| 欧美成人免费在线视频| 亚洲资源av| 国产一区二区久久久| 欧美福利在线观看| 欧美激情精品久久久久久久变态 | 亚洲精品一二三区| 亚洲国产精品久久久久婷婷老年| 亚洲精品美女在线观看播放| 久久成人在线| 在线日韩欧美视频| 久久午夜精品一区二区| 久久国产精品久久久久久| 久久久.com| 国产欧美日韩一区二区三区在线 | 欧美激情国产精品| 亚洲永久精品国产| 欧美激情一区二区三区| 国产亚洲一区二区三区在线播放| 9l视频自拍蝌蚪9l视频成人| 伊人夜夜躁av伊人久久| 六月天综合网| 欧美日一区二区三区在线观看国产免 | 中日韩高清电影网| 久久日韩粉嫩一区二区三区| 国产一区二区三区久久久| 久久亚洲精品视频| 一区二区三区久久久| 亚洲综合欧美| 欧美手机在线| 亚洲欧美日韩一区二区三区在线| 国产精品永久免费在线| 久久久久久久久久久久久女国产乱 | 久久久久九九九九| 激情欧美亚洲| 欧美日韩亚洲一区三区| 久久久九九九九| 亚洲欧美在线免费观看| 国产婷婷色一区二区三区| 美女视频黄免费的久久| 亚洲综合99| 亚洲一级黄色av| 午夜亚洲福利| 日韩一区二区精品视频| 国产日韩精品视频一区| 午夜日韩在线| 免费一级欧美在线大片| 香蕉国产精品偷在线观看不卡| 国产视频一区二区在线观看| 女生裸体视频一区二区三区| 欧美一区二区三区免费观看视频| 国产精品久久久久久av下载红粉 | 欧美在线视屏| 亚洲一本视频| 性18欧美另类| 亚洲午夜精品一区二区三区他趣| 亚洲丰满少妇videoshd| 亚洲高清在线视频| 在线观看成人网| 黄色免费成人| 激情成人中文字幕| 在线精品亚洲| 中日韩美女免费视频网址在线观看| 亚洲精品久久久久久久久久久久久 | 国产精品海角社区在线观看| 国产免费观看久久| 国产精品久久久久9999吃药| 国产精品久久久久久久久久妞妞| 国产精品天天摸av网| 国产精品中文在线| 国产精品欧美日韩| 国产精品久久久久久久午夜片 | 国产精品亚洲一区| 亚洲激情欧美激情| 欧美精品在欧美一区二区少妇| 美女在线一区二区| 国产精品久久久久永久免费观看| 国产精品久久久久影院亚瑟 | 欧美精品在线观看91| 欧美精品一区二区三区在线播放 | 麻豆av一区二区三区| 欧美日韩一区二区三区在线| 欧美视频免费看| 在线精品视频在线观看高清| 亚洲福利国产| 亚洲网站在线观看| 欧美理论电影在线播放| 欧美视频在线免费| 亚洲欧洲在线视频| 日韩一区二区精品| 久久精品国产一区二区电影| 欧美日韩激情小视频| 亚洲电影在线看| 中文一区二区| 欧美成人一区二区在线|