• 大小: 2.87KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-将若干字符串按照字母顺序输出(入门级实例108).zip

资源截图

代码片段和文件信息

// Order.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “stdio.h“
#include 
#include 

void sort(char *strings[] int n) //对字符串排序
{
    char *temp;
    int i j;
    for (i = 0; i < n; i++)
    {
        for (j = i + 1; j < n; j++)
        {
            if (strcmp(strings[i] strings[j]) > 0) //比较字符大小,交换位置
            {
                temp = strings[i];
                strings[i] = strings[j];
                strings[j] = temp;
            }
        }
    }
}

int main()
{
    int n = 5;
    int i;
    char *strings[] =
    {
        “C language“ “Basic“ “World wide“ “Hello world“
            “One worldone dream!“
    }; //构造字符串数组
    sort(strings n); //排序
    for (i = 0; i < n; i++)
        printf(“%s\n“ strings[i]);
    getch();
    return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         927  2010-10-20 09:49  Order\Order.cpp
     文件        4524  2010-10-20 09:48  Order\Order.dsp
     文件         535  2010-10-20 09:48  Order\Order.dsw
     文件         292  2010-10-20 09:48  Order\StdAfx.cpp
     文件         769  2010-10-20 09:48  Order\StdAfx.h

评论

共有 条评论