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

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

input-events

  • CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applic

    CForms, by Lars Berntzon (Stockholm, Sweden), is a tool for building interactive forms-driven applications. CForms applications can run on nany type of library supported by the "curses" library. CForms uses a language-based design to define forms. An application may contain C source modules, field pictures, field definitions, literals, and events. CForms applications must be compiled with the CFC compiler and linked with the CFL linker.CForms runs on most Unix SYSV compatible platforms including SunOS, Dell-SVR4, and Diab SYSV.3. It requires a curses library and yacc or GNU Bison. CForms version 2.1 is now available as volume #402 in the CUG Library.

    標簽: forms-driven interactive Stockholm Berntzon

    上傳時間: 2013-12-20

    上傳用戶:himbly

  • F:RobinGameincludeinputRDXJoystick.rar DX8 游戲手柄完整類

    F:\RobinGame\include\input\RDXJoystick.rar DX8 游戲手柄完整類

    標簽: RobinGameincludeinputRDXJoystick DX8 手柄

    上傳時間: 2013-11-27

    上傳用戶:songnanhua

  • A digital fi‘equeney meter designed with FPGA development software Q-~us 11 is introduced.The 1 Hz—l

    A digital fi‘equeney meter designed with FPGA development software Q-~us 11 is introduced.The 1 Hz—l MHz input measured pulse signals of the digital ii‘equency meter can be used for measuring frequency,period,pulse width and duty ratio,etc.The test results stably display O71 3 seven—segment numeric tubes,and the measuring ranges may be switched over automatically.The measuring error is equal to or less than 0.1%.

    標簽: development introduced designed software

    上傳時間: 2016-04-09

    上傳用戶:stewart·

  • 小型的Lex編譯器

    小型的Lex編譯器,能從input.txt識別簡單的C++語句,并將分析結果存于output.txt中

    標簽: Lex 編譯器

    上傳時間: 2014-01-12

    上傳用戶:qq21508895

  • 編譯原理的一個語法分析程序

    編譯原理的一個語法分析程序,設計,編制并調試一個語法分析程序,加深對語法分析原理的理解。可以編譯c語言的基本結構,包括循環嵌套和條件嵌套。(1) 執行程序時,可輸入源程序的路徑,如果輸入為空的話,將會編譯默認的源程序“./input.dat” (2) 如果編譯發現有錯誤,則會輸出錯誤行數,并在結束編譯時輸出“Complete!”

    標簽: 編譯原理 程序

    上傳時間: 2016-04-11

    上傳用戶:許小華

  • Problem D:合唱隊形 Time Limit:1000MS Memory Limit:65536K Total Submit:1237 Accepted:437 Language

    Problem D:合唱隊形 Time Limit:1000MS Memory Limit:65536K Total Submit:1237 Accepted:437 Language: not limited Description N位同學站成一排,音樂老師要請其中的(N-K)位同學出列,使得剩下的K位同學排成合唱隊形。 合唱隊形是指這樣的一種隊形:設K位同學從左到右依次編號為1,2…,K,他們的身高分別為T1,T2,…,TK, 則他們的身高滿足T1 < T2 < ...< Ti > Ti+1 > … >TK(1<=i<=K)。 你的任務是,已知所有N位同學的身高,計算最少需要幾位同學出列,可以使得剩下的同學排成合唱隊形。 Input 輸入包含若干個測試用例。 對于每個測試用例,輸入第一行是一個整數N(2<=N<=100),表示同學的總數。第二行有N個整數,用空格分隔,第i個整數Ti(130<=Ti<=230)是第i位同學的身高(厘米)。當輸入同學總數N為0時表示輸入結束。 Output 對于每個測試案例,輸出包括一行,這一行只包含一個整數,就是最少需要幾位同學出列。 Sample Input 8 186 186 150 200 160 130 197 220 3 150 130 140 0 Sample Output 4 1

    標簽: Limit Accepted Language Problem

    上傳時間: 2014-01-13

    上傳用戶:aappkkee

  • 對于符號三角形問題

    對于符號三角形問題,符號三角形的第一行有n個符號。符號可以為“+”或“-”,以下每一行的符號由上行得到,2個同號下面都是“+”,2個異號下面都是“-”。如下圖所示(第一行有4個符號的符號三角中的其中的一個): 符號三角形問題要求對于給定的n,計算有多少個不同的符號三角形,使其所含的“+”和“-”的個數相同。 Input 輸入包含若干個測試用例。 對于每個測試用例,輸入的一行是一個整數n(2<=n<=20),表示符號三角形第一行符號的個數。當輸入n為0時表示輸入結束。 Output 對于每個測試案例,輸出包括一行,這一行只包含一個整數,就是該測試案例總共有多少不同的符號三角形,使其所含的“+”和“-”的個數相同。 Sample Input 2 3 0 Sample Output 0 4

    標簽: 符號 三角形

    上傳時間: 2014-01-02

    上傳用戶:陽光少年2016

  • Problem F:汽車加油 Time Limit:1000MS Memory Limit:65536K Total Submit:1400 Accepted:404 Language

    Problem F:汽車加油 Time Limit:1000MS Memory Limit:65536K Total Submit:1400 Accepted:404 Language: not limited Description 一輛汽車加滿油后可行駛n公里。旅途中有若干個加油站。設計一個有效算法,指出應在哪些加油站停靠加油,使沿途加油次數最少。 編程任務: 對于給定的n和k(k <= 10000)個加油站位置,編程計算最少加油次數。 Input 第一行有2 個正整數n和k,表示汽車加滿油后可行駛n公里,且旅途中有k個加油站。接下來的1 行中,有k+1 個整數,表示第k個加油站與第 k-1 個加油站之間的距離。第0 個加油站表示出發地,汽車已加滿油。第k+1 個加油站表示目的地。 Output 輸出最少加油次數。如果無法到達目的地,則輸出”No Solution”。 Sample Input 7 7 1 2 3 4 5 1 6 6 Sample Output 4

    標簽: Limit Accepted Language Problem

    上傳時間: 2016-04-12

    上傳用戶:youth25

  • In this letter, the error performance of an ultra-wideband (UWB) system with a hybrid pulse amplitud

    In this letter, the error performance of an ultra-wideband (UWB) system with a hybrid pulse amplitude and position modulation (PAPM) scheme over indoor lognormal fading channels is analyzed. In the PAPM UWB system, input data is modulated onto both the pulse amplitudes and pulse positions.

    標簽: ultra-wideband performance amplitud letter

    上傳時間: 2014-01-08

    上傳用戶:yulg

  • 北京大學ACM題 Here is a geometric problem. You have an angle and some squares in the first quadrant of

    北京大學ACM題 Here is a geometric problem. You have an angle and some squares in the first quadrant of the plane rectangular coordinates. The vertex of the angle is fixed on the origin O of the coordinates, and both of its radial lines are specified by the input. The sizes of the squares are also specified by the input, and the squares can shift vertically and horizontally. Now your job is to use the squares and the radial lines of the angle to enclose the maximum area, which excludes the area of the squares (see Figure 1). You should note that the edges of the squares must be parallel to the axes.

    標簽: geometric quadrant problem squares

    上傳時間: 2013-12-25

    上傳用戶:ynzfm

主站蜘蛛池模板: 连山| 卢龙县| 河东区| 泽普县| 剑河县| 宜昌市| 湖南省| 贡山| 孟村| 密云县| 河北省| 横山县| 洮南市| 马龙县| 瓦房店市| 龙陵县| 万盛区| 宜兴市| 贺州市| 海门市| 揭东县| 石河子市| 巴彦县| 兰州市| 正镶白旗| 色达县| 北流市| 长兴县| 什邡市| 榆中县| 吉林省| 镇江市| 阜城县| 九江县| 临武县| 正蓝旗| 城固县| 成安县| 大城县| 津南区| 泸定县|