- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以问题是,每当我输入一个单词时,该单词的复数版本后面都会跟着一堆随机垃圾。这是一个 example of the problem。这是大部分代码(如果您需要更多,我会添加更多),如果您发现任何其他问题,可以告诉我吗?非常感谢。
char * getWord()
{
//make char array of size 20 using malloc
char *word;
word = malloc(20);
//give the msg to user
printf("Enter a word ");
//take input from user
scanf("%s", word);
printf("\n");
//return word
return word;
}
//change word to uppercase
void toUpperCase(char *word)
{
int i = 0;
while (word[i] != '\0')
{
if (word[i] >= 65 && word[i] <= 90)
{
//it is upper case latter so do nothing
}
else if (word[i] >= 97 && word[i] <= 122)
{
word[i] = word[i] - 32;
}
i++;
}
}
//function which will determine which rule applies to given word
int findRule(char *word)
{
int n;//length of word
n = strlen(word);
//last char is Y then rule 1
if (word[n - 1] == 'Y')
return 1;
//end is S,CH,SH then rule 2
else if ((word[n - 1] == 'S') || (n >= 2 && (word[n - 1] == 'H' && (word[n - 2] == 'C' || word[n - 2] == 'S'))))
{
return 2;
}
//else rule 3
else return 3;
}
//rule one
char *ruleOne(char *word)
{
int n;//length of word
n = strlen(word);
//make char array of size 20 using malloc
char *ans;
ans = malloc(n + 2);
//copy all char except last
for (int i = 0; i<n - 1; i++)
{
ans[i] = word[i];
}
//add ies in place of y
ans[n - 1] = 'I';
ans[n] = 'E';
ans[n + 1] = 'S';
return ans;
}
//rule 2
char *ruleTwo(char *word)
{
int n;//length of word
n = strlen(word);
//make char array of size 20 using malloc
char *ans;
ans = malloc(n + 2);
//copy all char
for (int i = 0; i<n; i++)
{
ans[i] = word[i];
}
//add two char E and S
ans[n] = 'E';
ans[n + 1] = 'S';
return ans;
}
//rule 3
char *ruleThree(char *word)
{
int n;//length of word
n = strlen(word);
//make char array of size 20 using malloc
char *ans;
ans = malloc(n + 1);
//copy all char
for (int i = 0; i<n; i++)
{
ans[i] = word[i];
}
//add S
ans[n] = 'S';
return ans;
}
int main()
{
//geets the user
greets();
//open file to write
fptr = fopen("pluralWords.txt", "w");
//if file not open
if (fptr == NULL)
{
printf("Error to open file!\n");
exit(1);
}
else
{
//file opened
printf("%s\n", "The output file pluralWords.txt is open\n");
printf("%s\n", "---------------------------------------\n");
while (1)
{
//ask the msg that user want enter a number or not y/Y(YES), n/N (NO)
printf("%s", "Would you like to enter a word Y (YES) or N (NO)?");
//it is for check yes or no
char c[2];
scanf("%s", c);
if (c[0] == 'n' || c[0] == 'N')
{
printf("Thank you for trying out the Pluralizer!");
printf("\nClosing the file pointer");
fclose(fptr);
break;
}
else if (c[0] == 'y' || c[0] == 'Y') {
printf("\n");
//make cahr array using pointer and malloc function
char *word = malloc(20);
//read input
word = getWord();
//convert to upper case
toUpperCase(word);
printf("%s\n", word);
//find rule
int rule = findRule(word);
printf("Rule is %d\n", rule);
char *ans = malloc(22);
//call coresponding function with rule
if (rule == 1)
{
//call ruleOne
ans = ruleOne(word);
}
else if (rule == 2)
{
//call ruleTwo
ans = ruleTwo(word);
}
else
{
//call ruleThree
ans = ruleThree(word);
}
//output to screen
printf("Word is %s and plural is %s\n\n", word, ans);
//msg to user
printf("Adding the words to the file\n");
//wrtie to file
fprintf(fptr, "%s %s\n", word, ans);
printf("\n\n");
最佳答案
C 字符串要求末尾有一个空字符,即:['s', 't', 'r', 'i', 'n', 'g', '\0']
其中 '\0' 为空字符。
这个空字符是操作知道字符串长度的方式。字符串函数(例如 strlen
、strcpy
等)会查找此空字符,并会继续在内存中查找,直到找到它。在打印出来的情况下,这意味着程序将打印出“垃圾”内存,直到找到设置为\0 的位置。
在您的规则...函数中,您将覆盖此空字符而不是替换它:
ans[n] = 'E'; //this was NULL (/0)
ans[n + 1] = 'S';
return ans; //ans is now missing a NULL terminator
顺便说一句,您还分配了内存但从未释放它,这会导致内存泄漏。在 C 中,将缓冲区传递给函数通常比让其 malloc 内存并返回它更干净(例如 char*ruleOne(char*word)
会更好,因为 voidruleOne(char * in_word, char* out_word, int out_len)
) 然后您可以简单地在 main() 中创建一个缓冲区作为 char wordbuf[128]
而不必担心自己管理内存。
关于c - C中的复数程序,当我运行程序时,复数单词后面有一堆随机的东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47403929/
This question already has an answer here: Character constant too long for it's type (1个答案) 1年前关闭。 我是
每次我执行 Scala 程序时,Eclipse 都会创建一个新的“运行配置”。这样做的问题是我需要自定义默认的运行配置(需要更改工作路径)。因此,我第一次创建和自定义运行配置时一切正常,但任何后续尝试
关闭。这个问题是opinion-based 。目前不接受答案。 想要改进这个问题吗?更新问题,以便 editing this post 可以用事实和引文来回答它。 . 已关闭 5 年前。 Improv
基本上我正在做的是创建一个充当启动器的 swing 应用程序。它所做的只是为用户提供了 3 个选项,他们可以从中选择打开一个新的 java 应用程序。 3 个不同的 java 应用程序都有不同的主题,
这个问题已经有答案了: Make a py2exe exe run without a console? (2 个回答) 已关闭 9 年前。 我不希望在打开 python 应用程序时在后台打开 cmd
我曾经尝试编译一个我为国际象棋游戏编写的 C 程序(感谢 YouTube 的 Bluefever Software 提供的教程),但是当我去编译该程序时,我执行了这行代码: C:\TDM-GCC-64
这是一段代码,通过从一个文件获取输入并在另一个文件中给出输出来执行数字的平方。 #include #include void main() { FILE *fp1, *fp2; char
#include using namespace std; class foo { private: static int cnt; // number in memory stat
我做了一个简单的 hello world 程序。我单击“开始调试”,窗口显示“项目已过期。您要构建它吗?”当我单击"is"时,下一个窗口显示“存在构建错误。您要继续并运行上次成功的构建吗?”。我再次选
这是一个程序,有人在其中输入密码并尝试三次猜密码。当我编译它时,我遇到了多个错误,其中一个包括第 13 行,它基本上说它找不到包含在 Password_Program 类中的类似函数。 #includ
我想将我的游戏导出到 .jar 文件中。它导出;当我运行它时,框架出现了,但面板没有加载。我的框架和面板位于两个不同的类文件中,但我认为这没有什么区别。而且,它在 Eclipse 中完全可以工作。我在
我粘贴了程序以从 codenameone 开发人员指南中创建一个按钮,并且我在 netbeans 中使用了该代码,但是当我单击“运行”时,它在模拟器中没有显示任何内容 最佳答案 您删除了 hi.sho
当我执行这个程序时,它并没有终止。 例如,如果我给它输入 A,输出将是: 65 7 1000001 0 65 7 1000001 ... 我的代码: #include #include void
考虑下面的基本客户端和服务器程序(只是骨架/说明我的问题)。客户端启动与服务器的连接,提示用户输入消息,然后发送到服务器并打印到屏幕。 如果我在循环中间突然退出客户端程序(例如通过关闭终端窗口),有时
我运行一个非常简单的单线程 Java 程序。当我在 Ubuntu 下使用命令检查线程时 ps -eLf 它显示操作系统级别有 14 个线程。我希望当程序有一个线程时只有一个线程,如果程序有 x 个线程
当我从命令行运行类似以下内容的代码时,真正发生了什么? > scala hello.scala 是否有hello.class生成,执行然后丢弃?还是在这种情况下Scala表现得像翻译一样?我只是在想,
程序正在从网络摄像机接收以字节为单位的图像数据,然后处理图像。程序第一次启动时使用470Mb RAM,每1秒增加到15Mb,一直持续到没有足够的空间而计算机挂起。 方法 getImage() 每 10
当我运行我的 selenium 程序时,它显示错误,如何解决这个问题? import org.openqa.selenium.By; public class sss { public sta
我写了一个简单的程序,试图查看内存中的变化,但没有任何变化。无论我是否运行代码,总是会出现大约 20% 左右的直线水平线。 #include using namespace std; int main
我是 c/c++ 领域的新手,我已经在虚拟机上沉迷太久了。 我正在修改我们在整个公司使用的现有 C++ 工具。该工具正在所有主要操作系统(Windows、Mac、Ubuntu、Solaris 等)上使
我是一名优秀的程序员,十分优秀!