2.54mm单排针,单排双塑,180度,H=1.5/2.0/2.5mm 2.54mm双排针,双排双塑,180度,H=1.5/2.0/2.5mm 2.54mm单/双排弱,90度,H=1.5/2.0/2.5mm 2.54mm单/双排针,SMT,H=1.5/2.0/2.5mm 2.54mm单排双塑,双排双塑,SMT,H=1.5/2.0/2.5mm 2.54mm三排针,90/180度,H=2.5mm 2.54mm单/双排针,打K,H=1.5/2.0/2.5mm 2.54mm双排针,90/180度,H=4.3mm 2.54mm双排针,90/180度,H=7.4mm 2.54mm双排针,双塑,90度,塑宽=9.7mm,H=2.54mm 2.00mm排针系列: 2.00mm单排
标签: SMD贴片排针 90度贴片排针 90度SMT排针 SMD PIN针 PH贴片排针 90度贴片排针 SMD针座
上传时间: 2016-08-03
上传用户:sztfjm
2.54mm单排针,单排双塑,180度,H=1.5/2.0/2.5mm 2.54mm双排针,双排双塑,180度,H=1.5/2.0/2.5mm 2.54mm单/双排弱,90度,H=1.5/2.0/2.5mm 2.54mm单/双排针,SMT,H=1.5/2.0/2.5mm 2.54mm单排双塑,双排双塑,SMT,H=1.5/2.0/2.5mm 2.54mm三排针,90/180度,H=2.5mm 2.54mm单/双排针,打K,H=1.5/2.0/2.5mm 2.54mm双排针,90/180度,H=4.3mm 2.54mm双排针,90/180度,H=7.4mm 2.54mm双排针,双塑,90度,塑宽=9.7mm,H=2.54mm 2.00mm排针系列: 2.00mm单排
标签: 板对板连接器 排针排母连接器 排针连接器 排母连接器 SMT排针 双塑SMT排针 双塑SMD排针 双塑贴片排针
上传时间: 2016-08-03
上传用户:sztfjm
#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
【电:137乄1935,乄6566加威信看视频 】 就买就送哦,更多好礼拿不停,现六.折-优.惠-等你来。【新≡到≡产≡品】我们做的是耐久生意,靠的是老客户长时间支持 各种高科技产品一应俱全今年的《政府工作报告》,李克强总理将“推进新一轮高水平对外开放”作为8项重点工作之一。其主要包括一带一路等五大方面。 既然“弱势欧元”或成定局,外汇交易员自然开始摸索套利机会——欧元/英镑。 互联互通方案的严谨架构,正是这一轮对外开放智慧的体现,它的成功运行,将为一带一路,人民币国际化等其它对外开放战略的实施提供条件。 深港通的来临,让管理层看到加强中国业务的必要性。目前领航通过其全球新兴市场股票基金,在A股投资高达38亿美元,其中三分之一通过沪港通,深港通在沪港通基础上做出多项改进,包括新增股票投资标的,增加市值在60亿元人民币以上的深证成份指数和深证中小创新指数的成份股,深港通下港股通股票新增恒生综合小型股指数成份股,以及A+H股上市公司在深交所上市的A股,取消沪股通总额度,深股通不设额度,还将增加金融产品,包括纳入交易所买卖基金。领航预期深港通将令未来集团在A股以互联互通投资的比例显著加大。 不过冼敬棠也表示,目前意大利经济萎靡不振,整体欧元区形势不稳,欧元长期承压。具体来看,意大利人均GDP仍定留在上世纪90年代末期水平,劳动力市场僵化,银行不良贷款比率近年来持续上升至18%高位,仅次于希腊,位居欧洲第二;其债务对GDP占比高达133%,在欧元区中位列第二。如果意大利债务违约,那么将出现救助乏力的情况。此外,外界更是担忧,意大利的银行业是否可能成为“欧债危机2.0”的导火索。
标签: 麻将
上传时间: 2017-02-06
上传用户:yaya2017
在 USB 设计中,时钟频率提供了主要的信号源。USB 差分 DP/DM 对可工作于 480Mbps的高速模式,系统时钟可工作于 12 MHz、48 MHz 及 60 MHz。由于 USB 电缆扮演了单极天线的角色,因此必须小心设计以防止 RF 电流耦合至缆线上。
上传时间: 2017-05-21
上传用户:ternel
CMPP 2.0 是移动ISMG的短信接入协议。
上传时间: 2017-07-05
上传用户:twater2000
用二分法计算求解下列方程的近似根: (1)f(x)= X5 -x -1 = 0, (2)e2x- 5x2 + 2 = 0。
上传时间: 2017-09-17
上传用户:nky1997
ZCORE系列NBIOT开发底板资料开源。 NBIOT开发板主要接口: Micro USB *1 3.7V电池充电电路 庆科WIFI模块支持 贴片SIM卡支持 STM32L433全部外围接口已拉出为2.0排针
上传时间: 2018-04-25
上传用户:pshr960405
开源项目,USBIP客户端代码,2.0版本
上传时间: 2018-06-28
上传用户:ley.x
Introduction jSMPP is a java implementation (SMPP API) of the SMPP protocol (currently supports SMPP v3.4). It provides interfaces to communicate with a Message Center or an ESME (External Short Message Entity) and is able to handle traffic of 3000-5000 messages per second. jSMPP is not a high-level library. People looking for a quick way to get started with SMPP may be better of using an abstraction layer such as the Apache Camel SMPP component: http://camel.apache.org/smpp.html Travis-CI status: History The project started on Google Code: http://code.google.com/p/jsmpp/ It was maintained by uudashr on Github until 2013. It is now a community project maintained at http://jsmpp.org Release procedure mvn deploy -DperformRelease=true -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=sonatype-nexus-staging -Dgpg.passphrase=<yourpassphrase> log in here: https://oss.sonatype.org click the 'Staging Repositories' link select the repository and click close select the repository and click release License Copyright (C) 2007-2013, Nuruddin Ashr uudashr@gmail.com Copyright (C) 2012-2013, Denis Kostousov denis.kostousov@gmail.com Copyright (C) 2014, Daniel Pocock http://danielpocock.com Copyright (C) 2016, Pim Moerenhout pim.moerenhout@gmail.com This project is licensed under the Apache Software License 2.0.
上传时间: 2019-01-25
上传用户:dragon_longer