摘要:
Problem StatementYou have a collection of music files with names formatted as “genre-artist-album-song” (quotes for clarity only), where genre, artist, album, and song each consist of only lowercase l... 阅读全文
posted @ 2014-07-26 19:41
Andy Cheung
阅读(238)评论(0)推荐(0)
摘要:
//描述:输入一串字符(包括数字),去掉连续次数多于3的字符,如果去掉后仍有连续次数多于3的,//继续进行同样的处理,直到结果中没有出现连续次数多于3的数字为止。#define _CRT_SECURE_NO_WARNINGS#include #include int flag = 0;void delete(char s[]){ int length; int i, j, k , m; lengt... 阅读全文
posted @ 2014-07-15 16:55
Andy Cheung
阅读(304)评论(0)推荐(0)