程序不对,要怎样改才能符合要求?


#include<stdio.h>   //以上是朋友圈中一奇葩贴:“2月14情人节了,我决定造福大家。第2个赞和第14个赞的,我介绍你俩认    
                               识…………咱三吃饭…你俩请…”。现给出此贴下点赞的朋友名单,请你找出那两位要请客的倒霉蛋
int main()               //输入格式:
                            输入按照点赞的先后顺序给出不知道多少个点赞的人名,每个人名占一行,为不超过10个英文字母的非空                                        
                              单词,以回车结束。一个英文句点.标志输入的结束,这个符号不算在点赞名单里。
                             //输出格式:
                           根据点赞情况在一行中输出结论:若存在第2个人A和第14个人B,则输出“A and B are inviting you to dinner...”; 
                            若只有A没有B,则输出“A is the only one for you...”;若连A都没有,则输出“Momo... No one is for you ...”。
{
    char c;
    int i=0;
    while(1)
    {
        scanf("%c",&c);
        i++;
        if(c=='.')
        break;
    }
    if(i>=12)    printf("A and B are inviting you to dinner...");
    else if(i>=2&&i<12)    printf("A is the only one for you...");
    else    printf("Momo... No one is for you ...");
    return 0;

int main{
    char s[10];
    char sA[10];
    char sB[10];
    int i=0;
    while(1)
    {
        scanf("%s",&s);
        i++;
        if(i==2)
            strcpy(sA,s);
        if(i==14)
            strcpy(sB,s);
        if(c=='.')
        break;
    }
    if(i>=14)    printf("%s and %s are inviting you to dinner...",sA,sB);
    else if(i>=2&&i<14)    printf("%s is the only one for you...",sA);
    else    printf("Momo... No one is for you ...");
    return 0;
}

你这i是在数什么呢,一个字符就加1?
不是说好了一个人名占一行吗,你应该数有多少个人,而不是人名里一共有多少个字