紫书(算法竞赛)3.4.2思考题题目2的3个问题

#include <stdio.h>

                                 //隐藏错误:缺少头文件<string.h>

#define maxn 10000000 + 10   //错误1:maxn太大,程序无法运行。
int main()
{
    char s[maxn];
    scanf("%s",s);
    int tot = 0;
    for(int i = 0;i < strlen(s);i++)  //错误3:此处效率低下,应该在for循环外面写"int len = strlen(s);",把里面的换成len。
        if(s[i] == 1) tot++;             //错误2:   1应该加上单引号。此处导致结果不正确。
    printf("%d\n",tot);
    return 0;
}

全部评论

相关推荐

10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务