虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

open-dbexpress

  • DDA使用教程

    DDSCAT 7.3 is a freely available open-source Fortran-90 software package applying the “discrete dipole approximation” (DDA) to calculate scattering and absorption of electromagnetic waves by targets with arbitrary geometries and complex refractive index. The targets may be isolated entities (e.g., dust particles), but may also be 1-d or 2-d periodic arrays of “target unit cells”, which can be used to study absorption, scattering, and electric fields around arrays of nanostructures.

    标签: userguide

    上传时间: 2015-04-29

    上传用户:499689361

  • opengl库

    很全的库.OpenGL(全写Open Graphics Library)是个定义了一个跨编程语言、跨平台的编程接口规格的专业的图形程序接口。它用于三维图像(二维的亦可),是一个功能强大,调用方便的底层

    标签: c++opengl库

    上传时间: 2015-06-27

    上传用户:Z1Zhang

  • opengl库

    OpenGL(全写Open Graphics Library)是个定义了一个跨编程语言、跨平台的编程接口规格的专业的图形程序接口。它用于三维图像(二维的亦可),是一个功能强大,调用方便的底层...

    标签: opengl

    上传时间: 2015-06-27

    上传用户:Z1Zhang

  • minibpm

    BPM measurement C open source

    标签: BPM measurement C open source

    上传时间: 2015-07-15

    上传用户:15910473160

  • LWIP无操作系统移植

     lwip是一个轻量级的TCP/IP协议栈(Lightweight TCP/IP Stack)实现,最初是瑞士计算机科学学院Adam Dunkels编写的一个应用于无操作系统的嵌入式系统中的TCP/IP协议栈,后来作为一个开源(open source)项目,由一个全球性的团队进行开发和维护。

    标签: LWIP 无操作系统 移植

    上传时间: 2016-06-13

    上传用户:tttm1030

  • 运动会源代码

    #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

  • 学生成绩查询

    #include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp; int time=0,i=0,j=0,add[80],k=0,m; char *ch, str[900]; m=strlen(pd); if((fp=fopen("haha.txt","r"))==NULL) { printf("Cannot open this file\n"); exit(0); } for(;!feof(fp);i++) { str[i]=fgetc(fp); if(tolower(str[i])==tolower(pd[k])) {k++; if(k==m) if(!isalpha(i-m)&&!isalpha((str[i++]=fgetc(fp)))) { time++; add[j]=i-m+1; j++; k=0; } else k=0; } } if(time) { printf("The time is:%d\n",time); printf("The adders is:\n"); for(i=0;i

    标签: 查询学会少年宫

    上传时间: 2016-12-29

    上传用户:767483511

  • 学生成绩管理啊

    #include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp;  int time=0,i=0,j=0,add[80],k=0,m;  char *ch,  str[900];  m=strlen(pd);  if((fp=fopen("haha.txt","r"))==NULL)  {   printf("Cannot open this file\n");   exit(0);  } for(;!feof(fp);i++)  {  str[i]=fgetc(fp);   if(tolower(str[i])==tolower(pd[k]))    {k++;     if(k==m)     if(!isalpha(i-m)&&!isalpha((str[i++]=fgetc(fp))))     {      time++;      add[j]=i-m+1;      j++;      k=0;     }     else k=0;   }  }   if(time)  {   printf("The time is:%d\n",time);   printf("The adders is:\n");   for(i=0;i<j;i++)   printf("%5d",add[i]);   if(i%5==0)   printf("\n");   getch();   fclose(fp);   }   else   printf("Sorry!Cannot find the word(^_^)"); } main() { char pd[10],choose='y'; int flag=1;     while(flag)    {printf("In put the word you want to seqarch:");     scanf("%s",pd);     search(strlwr(pd));     printf("\nWould you want to continue?(Y/N):");     getchar();     scanf("%c",&choose);     if((tolower(choose))=='n')     flag=0;     else flag=1;    }   printf("Thanks for your using!Bye-bye!\n");   getch(); }

    标签: 学生专用

    上传时间: 2016-12-29

    上传用户:767483511

  • 上海地铁报站气球

    汉中路到了。开左边门,下车请注意安全。We are now at  Hanzhong Road . Doors will open on  the left。     本次列车终点站上海火车站。下一站终点站上海火车站,开左边门。使用公交卡的乘客可在出站后30分钟内换乘3号线、4号线,请注意换成列车的首末班车时间。打开metro大都会手机数码乘地铁。 Nest stop is the termina.station ShanghaiRailway station.Roors will open on the lift.   终点站上海火车站到了。开左边门。下车请注意安全。请全体乘客下车。We are now at the termina.station Shanghai Railway station Roors will open on the lift.  

    标签: 地铁

    上传时间: 2019-07-05

    上传用户:coolmen

  • VK3708BM/VK3710IM多按键高抗干扰防水积水可操作触摸触控

    产品型号(封装形式): VK3702DM      VK3702TM      VK3702OM——(SOP8 )     VK3706OM      VK3706OM     VK3706DM     VK3708BM     VK3710IM——(SOP16) 产品品牌:VINTEK/元泰                产品年份:新年份 深圳永嘉微电原厂直销,大量现货更有优势!让您的生产高枕无忧。 联系人:许硕  QQ:191 888 5898  TEL:188 9858 2398(微信)   ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述 VK3702DM提供2個觸摸感應按鍵,一對一直接輸出,提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現。   ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●  產品描述   VK3702TM提供 2 個觸摸感應按鍵,一對一的 Toggle 模式輸出,提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現 ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述 VK3702OM提供 2 個觸摸感應按鍵,一對一直接輸出,輸出為開漏(open drain)型態,適合作 AD 鍵。提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現。 ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述  VK3706OM提供6個觸摸感應按鍵,一對一直接輸出,輸出為開漏(open drain)型態,適合作AD鍵。提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現! ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述 VK3706DM提供6個觸摸感應按鍵,一對一直接輸出,提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現! ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述 VK3708BM提供8個觸摸感應按鍵,二進制(BCD)編碼輸出,具有一個按鍵承認輸出的顯示,按鍵後的資料會維持到下次按鍵,可先判斷按鍵承認的狀態。提供低功耗模式,可使用於電池應用的產品。對於防水和抗干擾方面有很優異的表現! ●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●● 產品描述 VK3710IM提供10個觸摸感應按鍵及兩線式串列界面,並有中斷輸出INT腳與MCU聯繫。提供低功耗模式,可使用於電池應用的產品。特性上對於防水和抗干擾方面有很優異的表現! 我们的优势   1:我司为VINTEK/台湾元泰半导体股份有限公司/VINKA的授权大中华区代理商,产品渠道正宗,确保原装,大量库存现货! 2:公司工程力量雄厚,真诚技术服务支持,搭配原厂服务各种应用产品客户。 3:好价格源自连接原厂直销,你有量,我有价,确保原装的好价格。 优势代理元泰VKD常用触控按键IC,简介如下: 标准触控IC-电池供电系列 VKD223EB --- 工作电压/电流:2.0V-5.5V/5uA-3V    感应通道数:1     通讯接口 更长响应时间快速模式60mS,低功耗模式220ms     封装:SOT23-6 VKD223B ---   工作电压/电流:2.0V-5.5V/5uA-3V    感应通道数:1     通讯接口 更长响应时间快速模式60mS,低功耗模式220ms     封装:SOT23-6 VKD232C  --- 工作电压/电流: 2.4V-5.5V/2.5uA-3V   感应通道数:2封装:SOT23-6  通讯接口:直接输出,低电平有效  固定为多键输出模式,內建稳压电路  VKD233DH(更小体积2*2)---工作电压/电流: 2.4V-5.5V/2.5uA-3V  1按键  封装:DFN6L 通讯接口:直接输出,锁存(toggle)输出   有效键更长时间检测16S VKD233DB(推荐) --- 工作电压/电流: 2.4V-5.5V/2.5uA-3V  1感应按键  封装:SOT23-6  通讯接口:直接输出,锁存(toggle)输出   低功耗模式电流2.5uA-3V VKD233DH(推荐)---工作电压/电流: 2.4V-5.5V/2.5uA-3V  1感应按键  封装:SOT23-6 通讯接口:直接输出,锁存(toggle)输出   有效键更长时间检测16S   标准触控IC-多键触摸按钮系列 VKD104SB/N --- 工作电压/电流:2.4V-5.5V/13uA-3V       感应通道数/按键数:4 通讯接口:直接输出,锁存输出,开漏输出    封装:SSOP-16 VKD104BC  --- 工作电压/电流:2.4V-5.5V/13uA-3V       感应通道数/按键数:4 通讯接口:直接输出,锁存输出,开漏输出   封装:SOP-16 VKD104BR  --- 工作电压/电流:2.4V-5.5V/13uA-3V       感应通道数/按键数:2 通讯接口:直接输出, toggle输出        封装:SOP-8 VKD104QB  --- 工作电压/电流:2.4V-5.5V/13uA-3V       感应通道数/按键数:4 通讯接口:直接输出,锁存输出,开漏输出   封装:QFN-16 VKD1016B  --- 工作电压/电流:2.4V-5.5V/20uA-3V       感应通道数/按键数:16-8 通讯接口:直接输出,锁存输出,开漏输出   封装:SSOP-28 VKD1016L  --- 工作电压/电流:2.4V-5.5V/20uA-3V       感应通道数:16-8 通讯接口:直接输出,锁存输出,开漏输出   封装:SSOP-28   (元泰原厂授权 原装保障 工程技术支持 大量现货库存) 标准触控IC-VK36系列 VK3601SS --- 工作电压/电流:2.4V-5.5V/1mA-5.0V      感应通道数:1 通讯接口:1 INPUT/1PWM OUT            封装:SOP-8 VK3601S  --- 工作电压/电流:2.4V-5.5V/4mA-3.3V      感应通道数:1 通讯接口:1 INPUT/1PWM OUT            封装:SOP-8   VK3602XS --- 工作电压/电流:2.4V-5.5V/ 60uA-3V       感应通道数:2 通讯接口:2对2 toggle输出            封装:SOP-8 VK3602K  --- 工作电压/电流:2.4V-5.5V/ 60uA-3V       感应通道数:2 通讯接口:2对2 toggle输出            封装:SOP-8 VK3606DM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:1对1直接输出              封装:SOP-16 VK3606OM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:1对1开漏输出              封装:SOP-16 VK3608BM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:BCD码直接输出              封装:SOP-16 VK3610IM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:SCL/SDA/INT通讯口          封装:SOP-16   标准触控IC-VK37系列 VK3702DM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:2 通讯接口:1对1直接输出             封装:SOP-8 VK3702OM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:2 通讯接口:1对1开漏输出             封装:SOP-8 VK3702TM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:2 通讯接口:1对1toggle输出           封装:SOP-8 VK3706DM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:1对1直接输出             封装:SOP-16 VK3706OM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:6 通讯接口:1对1开漏输出             封装:SOP-16 VK3708BM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:8 通讯接口:BCD码直接输出             封装:SOP-16 VK3710IM --- 工作电压/电流:3.1V-5.5V/ 3mA-5V       感应通道数:10 通讯接口:SCL/SDA/INT通讯口          封装:SOP-16   标准触控IC-VK38系列 VK3809IP --- 工作电压/电流:2.5V-5.5V/1.1mA-3V       感应通道数:9 通讯接口:IIC/INT通讯口              封装:SSOP-16 VK3813IP --- 工作电压/电流:2.5V-5.5V/1.1mA-3V       感应通道数:13 通讯接口:IIC/INT通讯口              封装:SSOP-20 VK3816IP --- 工作电压/电流:2.5V-5.5V/1.1mA-3V       感应通道数:16 通讯接口:IIC/INT通讯口              封装:SSOP-28 VK3816IP-A --- 工作电压/电流:2.5V-5.5V/1.1mA-3V     感应通道数:16 通讯接口:IIC/INT通讯口              封装:SSOP-28     以上介绍内容为IC参数简介,难免有错漏,且相关IC型号众多,未能一一收录。欢迎联系索取完整资料及样品!    生意无论大小,做人首重诚信!本公司全体员工将既往开来,再接再厉。争取为各位带来更专业的技术支持,更优质的销售服务,更高性价比的好产品.竭诚希望能与各位客户朋友深入沟通,携手共进,共同成长,合作共赢!谢谢。  

    标签: VK 3708 3710 BM IM 多按键 抗干扰 防水 操作 触控

    上传时间: 2019-07-10

    上传用户:szqxw1688