搜索结果

找到约 76 项符合 exit 的查询结果

Linux/Unix编程 //颜色初始化 if(!has_colors() || start_color() == ERR){ endwin() printf("Terminal does not su

//颜色初始化 if(!has_colors() || start_color() == ERR){ endwin() printf("Terminal does not support color.\n") exit(1) } init_pair(1, COLOR_GREEN, COLOR_BLACK) init_pair(2, COLOR_RED, COLOR_BLACK) init_pair(3, COLOR_CYAN, COLOR_BLACK) init_pair(4, COLOR_WHITE, COLOR_BLACK) ...
https://www.eeworm.com/dl/619/451809.html
下载: 145
查看: 1042

Linux/Unix编程 //建立窗口 win1 = newwin(15, 50, 1, 1) box(win1, ACS_VLINE, ACS_HLINE) mvwprintw(win1, 2,1, "

//建立窗口 win1 = newwin(15, 50, 1, 1) box(win1, ACS_VLINE, ACS_HLINE) mvwprintw(win1, 2,1, "WINDOW 1") mvwprintw(win1, 4,1, "Press any key switching to window 2") win2 = newwin(15, 40, 4, 20) box(win2, ACS_VLINE, ACS_HLINE) mvwprintw(win2, 2,1, "WINDOW 2") //建立子窗口 s ...
https://www.eeworm.com/dl/619/451813.html
下载: 119
查看: 1287

数据结构 1.建立一个抽象数据类型的二叉树演示程序

1.建立一个抽象数据类型的二叉树演示程序,菜单包括Creak(建树),Traval(遍历),LEAVES(叶子结点),DISPLAY(显示),DESTROY(销毁),EXIT(退出)。 2待加工的数据为字符型,在过程中键入.
https://www.eeworm.com/dl/654/451973.html
下载: 92
查看: 1027

*行业应用 client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> i

client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_fami ...
https://www.eeworm.com/dl/631/471268.html
下载: 76
查看: 1036

Java编程 Java program asking the user to enter a number and will be printed out 10 times and enter a letter "

Java program asking the user to enter a number and will be printed out 10 times and enter a letter "x" to exit.
https://www.eeworm.com/dl/633/476361.html
下载: 118
查看: 1051

无线通信 差分跳频系统编码器与频率转移函数的匹配设计

将编码的差分跳频系统等效为串行级联码,充分利用频率转移函数所产生的网格关联信息, 采用软输入软输 算法,进行类Turbo串行迭代译码,能有效改善系统的误比特性能. 此,如何实现差 分跳频系统串行级联结构的外编码器和频率转移函数(( 函数)的匹配设计是值得深入研究的问题.基 于互信息的外信息转移图(ExIT)能有效预测迭 ...
https://www.eeworm.com/dl/502527.html
下载: 2
查看: 53

无线通信 关于差分跳频资料

将编码的差分跳频系统等效为串行级联码,充分利用频率转移函数所产生的网格关联信息, 采用软输入软输 算法,进行类Turbo串行迭代译码,能有效改善系统的误比特性能. 此,如何实现差 分跳频系统串行级联结构的外编码器和频率转移函数(( 函数)的匹配设计是值得深入研究的问题.基 于互信息的外信息转移图(ExIT)能有效预测迭 ...
https://www.eeworm.com/dl/502530.html
下载: 2
查看: 34

Linux/uClinux/Unix编程 linux

简单命令使用grep等的使用 [zorro@isch ~]$ history     1  ifconfig     2  su     3  exit     4  ls     5  cd Desktop/     6  ls     7  tar zxcf VMwareTools-8.4.5-324285.tar.gz    &nb ...
https://www.eeworm.com/dl/511219.html
查看: 30

Jsp/Servlet asp实现限制一个ip只能访问一次的方法

asp实现限制一个ip只能访问一次的方法 <%  '/////////////////////////////////////////////////////  '// //  '//作用:一个IP地址只允许访问本页一次 //  '//引用:<!-- #include file="Check_Ip.asp" --> //  '// //  '/////////////////////////////////////////////////////  ...
https://www.eeworm.com/dl/512322.html
查看: 30

软件 学生成绩查询

#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(to ...
https://www.eeworm.com/dl/513823.html
下载: 2
查看: 16