首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴兰色紫精灵的代码贴C语言
#include <stdio.h>
#include <stdlib.h>
#include<string.h>

int main()
{
    char a[1000];
    int len;
    printf("Input a string:\n");
    scanf("%s",a);
    len=strlen(a);
    word(a,len);
......................
阅读全部 | 2014年7月12日 20:03
1
兰色紫精灵