魔咒词典(HD1880)

题:http://acm.hdu.edu.cn/showproblem.php?pid=1880
思路:结构体直接存储对应,好久没写了。。代码比较丑。。
需要注意的是魔咒输出时不用带[]

#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
struct node{
    char moz[25];
    char fun[85];
};
node Harry[100010];
int main()
{
    char smo[110];
    int m,sum=0;
    while(gets(smo) && strcmp(smo,"@END@") != 0)
    {
        int len = strlen(smo),flag=0,mi=0,fi=0;
        for(int i=0; i

你可能感兴趣的:(#,基础题)