-1

我的 C 课还有另一个练习。代码不会崩溃,但不能按预期工作。显然我犯了一个我找不到的错误。分配如下:用户输入两个字符 c1 和 c2 以及一个整数 n,您必须创建一个函数,该函数动态创建并返回一个包含 n 个字符的字符串,如下所示:c1c2c1c2c1c2 等。例如:c1=a 和 c2= s and n=4 字符串为:asas

但是我创建的数组不包含 c1 和 c2,而是 ASCII 表中的一些随机字符。加上这里:

printf("\nThe string is: %s\n",s);

屏幕上的输出是这样的: Ohe string is: I (Insted of The string is: s-whatever s is-) 下面是 .exe 文件中的照片链接:

在此处输入图像描述

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

char* alternate(char c1,char c2,int n)
{
    int i;
    char *s;
    s=(char*)malloc((n+1)*sizeof(char));
    if(s==NULL)
    {
        puts("Could not allocate memory!");
        exit(1);
    }
    for(i=0;i<n;i++);
    {
        if(i%2==0)
            s[i]=c1;
        else
            s[i]=c2;
    }
    s[i]='\0';
    return s;
}

main()
{
    char c1,c2,*s;
    int n;
    puts("Give two characters: ");
    scanf("%c %c",&c1,&c2);
    fflush(stdin);
    puts("Give an integer: ");
    scanf("%d",&n);
    s=alternate(c1,c2,n);
    printf("\nThe string is: %s\n",s);
    free(s);
    system("pause");
}

先感谢您!

4

2 回答 2

6

删除;在_

for(i=0;i<n;i++);
{

它不属于那里。

于 2013-03-23T15:22:45.387 回答
5

删除 for 循环语句旁边的分号:

 for(i=0;i<n;i++);

我删除了分号并尝试了您的代码并按预期打印文本。

for 循环旁边的分号使其成为一个空循环,之后的语句只是一些范围内的赋值。那是,

for(i=0;i<n;i++);
    {
        if(i%2==0)
            s[i]=c1;
        else
            s[i]=c2;
    } 

for(i=0;i<n;i++) 
{

}

{
   if(i%2==0)
      s[i]=c1;
   else
      s[i]=c2;
 } 
于 2013-03-23T15:23:55.667 回答