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

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

RAM-D<b>is</b>K

  • #include<stdio.h> void main(void) {int n,k,derivata,a[10],i printf("n=") scanf(" d",&n)

    #include<stdio.h> void main(void) {int n,k,derivata,a[10],i printf("n=") scanf(" d",&n) for(i=0 i<=n i++) { printf("a[ d]=",i) scanf(" d",&a[i]) } printf("k=") scanf(" d",&k) for(derivata=1 derivata<=k derivata++) { for(i=0 i<=n i++) a[i]=a[i]*(n-i) n-- for(i=0 i<=n i++) printf(" d ",a[i]) printf("\n") }}

    標簽: void derivata include printf

    上傳時間: 2017-09-17

    上傳用戶:duoshen1989

  • 離散實驗 一個包的傳遞 用warshall

     實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); } 

    標簽: warshall 離散 實驗

    上傳時間: 2016-06-27

    上傳用戶:梁雪文以

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

  • AVR單片機數碼管秒表顯示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • RT9005/RT9005A/RT9005B datasheet pdf

    The RT9005A/B is a dual-output Linear regulator for DDR-SDRAM VDDQ supply and termination voltage VTT supply.

    標簽: 9005 datasheet RT

    上傳時間: 2013-11-13

    上傳用戶:lmq0059

  • RT9018,RT9018AB-05 datasheet pdf

    The RT9018A/B is a high performance positive voltage regulator designed for use in applications requining very low Input voltage and very low dropout voltage at up to 3A(peak).

    標簽: 9018 datasheet RT

    上傳時間: 2013-10-10

    上傳用戶:geshaowei

  • C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數指令 */ #define PI 3.141

    C++完美演繹 經典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開C語言的內建函數指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數,圓的面積 */ /* 將比較數值大小的函數寫在自編include文件內 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結果:%d %d %d\n", a, b, c) } 程序執行結果: 由小至大排序之后的結果:1 2 3 可將內建函數的include文件展開在自編的include文件中 圓圈的面積是=201.0619264

    標簽: my_Include include define 3.141

    上傳時間: 2014-01-17

    上傳用戶:epson850

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • 電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動

    電力系統在臺穩定計算式電力系統不正常運行方式的一種計算。它的任務是已知電力系統某一正常運行狀態和受到某種擾動,計算電力系統所有發電機能否同步運行 1運行說明: 請輸入初始功率S0,形如a+bi 請輸入無限大系統母線電壓V0 請輸入系統等值電抗矩陣B 矩陣B有以下元素組成的行矩陣 1正常運行時的系統直軸等值電抗Xd 2故障運行時的系統直軸等值電抗X d 3故障切除后的系統直軸等值電抗 請輸入慣性時間常數Tj 請輸入時段數N 請輸入哪個時段發生故障Ni 請輸入每時段間隔的時間dt

    標簽: 電力系統 計算 運行

    上傳時間: 2015-06-13

    上傳用戶:it男一枚

  • Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search ma

    Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.

    標簽: Implemented following compile command

    上傳時間: 2014-01-01

    上傳用戶:lhc9102

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲午夜激情免费视频| 99在线热播精品免费| 巨乳诱惑日韩免费av| 美女视频黄免费的久久| 麻豆91精品91久久久的内涵| 欧美国产日产韩国视频| 国产精品久久久久久久浪潮网站| 国产精品久久夜| 在线日韩av片| 亚洲欧美中日韩| 欧美精品二区| 精久久久久久| 午夜视频在线观看一区二区三区| 久久久免费精品视频| 欧美视频一区在线| 亚洲人成网站在线播| 欧美在线影院在线视频| 欧美日韩国产不卡| 在线色欧美三级视频| 亚洲欧美日韩中文播放| 欧美日韩国产综合在线| 最新国产乱人伦偷精品免费网站| 欧美影院一区| 国产欧美日韩综合一区在线播放| 99国产麻豆精品| 欧美ed2k| 亚洲精品一区久久久久久 | 欧美成人午夜| 国产精品日日摸夜夜摸av| 中文av字幕一区| 欧美日韩中文字幕日韩欧美| 亚洲日本视频| 欧美国产日韩精品免费观看| 亚洲国产精品久久久久婷婷884 | 欧美尤物一区| 国产精品三上| 亚洲欧美在线播放| 国产精品久久久久久久app| 亚洲丝袜av一区| 欧美午夜理伦三级在线观看| 一个人看的www久久| 国产精品大片| 亚洲午夜高清视频| 国产精品女主播在线观看| 亚洲永久免费精品| 国产视频一区在线观看一区免费| 午夜综合激情| 黄色亚洲网站| 欧美日韩hd| 午夜一级久久| 在线视频观看日韩| 欧美日韩精品一区二区天天拍小说| 一本久久综合亚洲鲁鲁五月天| 国产精品不卡在线| 久久精品亚洲| 亚洲欧洲三级| 国产精品久久福利| 另类专区欧美制服同性| 一区二区日本视频| 国产日韩欧美视频| 欧美精品成人91久久久久久久| 亚洲一区视频| 亚洲国产婷婷香蕉久久久久久| 欧美精品在欧美一区二区少妇| 亚洲一区二区三| 在线免费观看日本一区| 国产精品成人一区二区艾草| 久久久人成影片一区二区三区观看| 91久久视频| 国产欧美精品一区二区色综合 | 欧美日韩大片| 欧美一区在线直播| 日韩亚洲欧美一区| 黄色成人av网| 国产精品午夜国产小视频| 久久在线播放| 亚洲免费小视频| 亚洲精品一二| 韩日欧美一区二区| 国产精品国产馆在线真实露脸| 老司机久久99久久精品播放免费| 亚洲一品av免费观看| 日韩亚洲不卡在线| 亚洲第一主播视频| 狠狠爱www人成狠狠爱综合网| 国产精品扒开腿做爽爽爽软件| 欧美成人自拍视频| 老司机精品视频一区二区三区| 亚洲综合精品| 亚洲一区二区三区影院| 亚洲美女视频| 亚洲美女精品久久| 亚洲影音先锋| 99re66热这里只有精品3直播 | 久久久免费精品视频| 香蕉成人啪国产精品视频综合网| 亚洲精品影院| 亚洲人成高清| 亚洲激情偷拍| 亚洲精品中文字幕在线观看| 亚洲国产精品成人一区二区| 黄色成人av| 日韩视频在线观看国产| 亚洲国产1区| 91久久夜色精品国产九色| 永久久久久久| 在线欧美三区| 亚洲精品日韩久久| 一区二区三区欧美日韩| 一区二区三区不卡视频在线观看| 亚洲精品日韩久久| 在线视频亚洲| 亚洲中无吗在线| 欧美亚洲一区二区三区| 欧美一级片久久久久久久| 欧美一区二区三区另类 | 99re这里只有精品6| 亚洲国产精品电影在线观看| 亚洲国产91色在线| 亚洲美女中文字幕| 中国av一区| 香蕉国产精品偷在线观看不卡| 先锋影音国产精品| 久久久精品午夜少妇| 麻豆精品一区二区综合av | 日韩视频免费| 亚洲在线观看免费| 久久精品亚洲一区| 欧美高清影院| 欧美激情一区二区三区高清视频 | 在线观看欧美| 亚洲人成在线播放网站岛国| 日韩视频免费大全中文字幕| 午夜激情久久久| 欧美不卡视频| 国产日韩欧美在线看| 亚洲国产精品女人久久久| 日韩视频中文| 久久成年人视频| 欧美日韩精品一区二区天天拍小说 | 亚洲人成亚洲人成在线观看图片 | 国产伦精品一区二区| 国产亚洲视频在线| 日韩亚洲国产欧美| 欧美亚洲视频一区二区| 欧美成人三级在线| 国产视频一区免费看| 亚洲激情影视| 欧美一级二级三级蜜桃| 另类成人小视频在线| 国产精品老牛| 99riav国产精品| 久久在精品线影院精品国产| 国产自产精品| 一本高清dvd不卡在线观看| 久久av红桃一区二区小说| 欧美美女bb生活片| 在线观看一区二区视频| 亚洲欧美国产高清| 欧美午夜视频网站| 亚洲国产高清视频| 香蕉国产精品偷在线观看不卡 | 亚洲亚洲精品三区日韩精品在线视频 | 先锋影音久久| 欧美日韩国产精品自在自线| 亚洲国产高潮在线观看| 久久精品观看| 国产乱码精品| 亚洲欧美韩国| 国产精品国产三级国产aⅴ无密码| 亚洲啪啪91| 欧美激情按摩| 亚洲美女视频| 欧美日韩亚洲综合一区| 日韩午夜激情av| 欧美日产在线观看| 在线亚洲伦理| 欧美午夜宅男影院在线观看| 中文av字幕一区| 国产精品婷婷| 亚洲欧美视频一区二区三区| 欧美视频三区在线播放| 在线午夜精品| 国产目拍亚洲精品99久久精品| 午夜精品免费| 国语精品中文字幕| 美女图片一区二区| 亚洲毛片av在线| 欧美午夜电影一区| 欧美亚洲在线观看| 在线看成人片| 欧美理论电影在线观看| 亚洲视频精选在线| 国产欧美日韩视频在线观看| 香蕉av福利精品导航| 黄色资源网久久资源365| 噜噜噜91成人网| av不卡在线| 国产自产高清不卡| 欧美日韩a区|