gpt4 book ai didi

c++ - C++ 中的 char* 问题

转载 作者:行者123 更新时间:2023-11-28 06:48:00 25 4
gpt4 key购买 nike

<分区>

为什么这段代码不起作用?我知道所有输入的字符串的长度都小于 20 个符号。我不使用 std::string 因为我想学习如何使用 char*

#include <map>
#include <stdio.h>
using namespace std;

map <char*,int> cnt;

int main()
{
char ans[20];
int n,mx = 0;

scanf("%d\n",&n);
for ( int i = 1; i <= n; i++){
char str[20];
gets(str);
cnt[str]++;
}
for ( auto i = cnt.begin(); i != cnt.end(); i++ )
puts(i->first);
}

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com