| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 389 人关注过本帖
标题:邮箱格式校验码(输出的结果好奇怪啊)
只看楼主 加入收藏
冰释芊芊
Rank: 2
等 级:论坛游民
帖 子:11
专家分:13
注 册:2014-4-7
结帖率:100%
收藏
 问题点数:0 回复次数:0 
邮箱格式校验码(输出的结果好奇怪啊)
#include<stdio.h>
#include<string.h>
int main()
{
    int i,n=0,temp;
    char str[30];
    printf("请输入你的邮箱地址:\n");
    scanf("%s",&str);
    printf("请输出你的邮箱地址:\n");
    for(i=0;i<30;i++)
        printf("%c",str[i]);
    if(str[i]!=' ')
        n=n+1;
    for(i=0;i<n;i++)
    {
        if(str[i]=='@') temp=1;
        if(str[0]=='@'&&str[n-1]=='.') temp=0;
        else
            temp=1;
        i++;
        if(str[i]=='q'&&str[i+1]!='q') temp=0;
        else
            temp=1;
        i++;
        i++;
        if(str[i]!='.') temp=0;
        else
            temp=1;
        i++;
        if(str[i]=='c'&&str[i+1]=='o'&&str[i+2]=='m')
            temp=1;
        else
            temp=0;
    }
        if(temp)
            temp=1;
        printf("你的邮箱地址正确\n");
         temp=0;
            printf("你的邮箱地址不正确\n");
        return 0;
}
2014-04-24 19:52
快速回复:邮箱格式校验码(输出的结果好奇怪啊)
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.022758 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved