gpt4 book ai didi

c - 在 C 中将字符串转换为小写/计算单词时出现问题

转载 作者:行者123 更新时间:2023-11-30 19:22:31 25 4
gpt4 key购买 nike

在我的第三个函数中,我在 const char* it = s; 处遇到语法错误。当我尝试编译时。我的 friend 让这个程序在他的编译器上运行,但是我使用的是 Visual Studio,它无法编译。任何和所有的帮助将不胜感激!

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>


//Declaring program functions
char concStrings();
int compStrings();
int lowerCase();
int birthday();

//Main function begins the program execution
int main (void)
{
concStrings( );
compStrings();
lowerCase();
birthday();

}
//end main function

//concatenate function
char concStrings ( )
{
char string1[20];
char string2[20];
char string3[50] = "";;

printf("Enter in two strings:");
gets(string1);
gets(string2);

strcat(string3, string1);
strcat(string3, "-");
strcat(string3, string2);

printf("The new string is: %s\n", string3);

}

// compare function
int compStrings()
{
char string1[20];
char string2[20];
int result;

printf ( "Enter two strings: ");
// scanf( "%s%s", string1, string2 );
gets(string1);
gets(string2);

result = strcmp ( string1, string2 );

if (result>0)
printf ("\"%s\"is greater than \"%s\"\n", string1, string2 );
else if (result == 0 )
printf ( "\"%s\" is equal to \"%s\"\n", string1, string2 );
else
printf ( "\"%s\" is less than \"%s\"\n", string1, string2);
return 0;
}

//lowercase function
int lowerCase()
{
char s[300];
int x;
int counted = 0;
int inword = 0;

printf ("Enter a sentence:");
// scanf("%s", s);
gets(s);

const char* it = s;

printf ("\nThe line in lowercase is:\n");

for (x = 0; s[x] !='\0'; x++)
printf ("%c", tolower(s[x]));

do
{
switch(*it)
{
case '\0': case ' ': case '\t': case '\n': case '\r':
if (inword)
{
inword = 0; counted++;
}
break;
default:
inword = 1;
}
}
while(*it++);

printf("\nThere are %i words in that sentence.\n", counted);

return 0;
}

int birthday()
{
}

最佳答案

C89(MSVC 遵循 C89 标准)禁止在 block 中混合声明和语句:

gets(s);
const char* it = s;

您对 it 对象的声明是在 gets 函数调用之后进行的,这是 C89 不允许的。

此外,gets 函数已在最新的 C 标准中删除,应在所有 C 程序中不惜一切代价避免使用。

关于c - 在 C 中将字符串转换为小写/计算单词时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16004019/

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