易截截图软件、单文件、免安装、纯绿色、仅160KB

Linux下完成的一个作业程序

文档创建日期:2010-02-19
   001    // P174: 2.编程题 (9)将数组a中相同元素只保留第一个,其余删除。
   002   
   003    // The beginning of C program: test06-09.c.
   004   
   005    // Header files included.
   006    #include <stdio.h>
   007    #include "head06-09.h"
   008   
   009    // Macro definition.
   010    #define MAX_SIZE 100
   011   
   012    // Main function's declaration.
   013    int  main ( void )
   014    {
   015        int     i=0,  n=10;
   016        float   list[MAX_SIZE];
   017        printf ( "Please input 10 float numbers for the list: " );
   018        for ( i=0; i<n; i++ )
   019            scanf  ( "%f", &list[i] );
   020        for ( i=0; i<n; i++ )
   021            list[i] = rounding (list[i]);
   022        select_sort (list, n);
   023        if ( delete_RptElmt (list, &n) == 0 )
   024            return  (1);
   025        printf ( "The new list is:\n" );
   026        for ( i=0; i<n; i++ )
   027&n


相关文档:

unbuntu linux bugzilla配置过程

在vm下安装unbuntu linux server 9.04
安装完成 查看IP地址 ifconfig
安装telnet sudo apt-get install xinetd telnetd
因为不需要太多人TELNET  暂时不做修改配置文件。
安装FTP sudo apt-get install vsftpd
同样不需要配置 使用默认的ftp:ftp用户访问
mysql
  sudo apt-get install mysql-server
apac ......

增强Linux/Unix服务器系统安全性介绍


 众所周知,网络安全是一个非常重要的课题,而服务器是网络安全中最关键的环节。Linux被认为是一个比较安全的Internet服务器,作为一种开放源代码操作系统,一旦Linux系统中发现有安全漏洞,Internet上来自世界各地的志愿者会踊跃修补它。然而,系统管理员往往不能及时地得到信息并进行更正,这就给黑客以可乘之机。然而 ......

linux下自带的mysql卸载和安装

linux下 mysql 的卸载和安装
关键字: linux下 mysql 的卸载和安装

一、前期准备:
    1
.由于redhat Enterprise 5 中自带一个mysql的版本,如果在安装linux前未选择mysql的安装此步就可跳过,因为我当时安装了现在将其卸载
,步骤如下:
     &nb ......

linux下磁盘操作命令

查看系统的磁盘信息:
fdisk -l
[root@localhost home]# fdisk -l
Disk /dev/hda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/hda1 * 1 13 104391 83 Linux
/dev/hda2 14 979 7759395 ......

Linux下创建文件

试一试,其实很简单的。
mkdir -m 775 filename
-m : 设置文件的权限。直接设置,不需要默认权限。
[root@localhost home]# mkdir text1
[root@localhost home]# mkdir -m 777 text2
[root@localhost home]# ls -l
drwxr-xr-x 2 root root 4096 2010-1-19 08:03 text1
drwxrwxrwx 2 root root 4096 2010-1-19 08:04 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号