2

我为 Win32/c 编译器编写了这个 C 程序,但是当我尝试在 Linux 机器或 codepad.org 中使用 gcc 运行它时,它显示“conio.h:没有这样的文件或目录编译终止”要执行哪些修改这个程序不包括任何其他新的包括像 curses.h

#include<stdio.h>
#include<conio.h>
void main()
  {
   int i=0,j=0,k=0,n,u=0;
   char s[100],c2,c[10];
   char c1[3]={'a','b','c'};
   clrscr();
   printf("no of test cases:");
   scanf("%d",&n);
  for(u=0;u<n;u++)
    {
 printf("Enter the string:");
 scanf("%s",s);
  i=0;
 while(s[i]!='\0')
  {
     if(s[i+1]=='\0')
         break;
     if(s[i]!=s[i+1])
     {
      for(j=0;j<3;j++)
       {
    if((s[i]!=c1[j])&&(s[i+1]!=c1[j]))
    {
      c2=c1[j];
     }
}
    s[i]=c2;

  for(k=i+1;k<100;k++)
    {
 s[k]=s[k+1];
}
  i=0;
  }
  else
  i++;
}
c[u]=strlen(s);

}
for(u=0;u<n;u++)
printf("%d\n",c[u]);
 getch();
}
4

3 回答 3

3

看起来您使用的唯一功能conio.hclrscr()getch()。只要把它们拿出来就可以了——它们似乎不会影响程序的运行。它们在这里的使用更像是 Windows 终端行为的解决方法。

几点注意事项:

  1. main()应该返回int
  2. strlen()定义在string.h- 你可能想要包含它。
于 2011-11-06T05:51:06.860 回答
2

查看您的问题,我可以看到对于 clrscr() 和 getch() 您正在使用 conio.h 但是此标头在 gcc 中不可用。所以对于 clrscr 使用

system("clear");

正如你提到的 getch() 使用 curses 库

干杯!!

于 2011-11-06T05:54:04.580 回答
0

我没有看你的代码,看它是否需要这三个功能。但这是获取它们的最简单方法。通常有比使用 getch() 更好的方法。当你清除我的屏幕时,clrscr() 也不好玩!

#include<stdio.h>
#include <stdlib.h>  // system
#include <string.h>  // strlen
#include <termios.h> // getch
#include <unistd.h>  // getch

void clrscr()
{ 
  // Works on systems that have clear installed in PATH
  // I don't like people clearing my screen though
  system("clear");
}


int getch( ) 
{
  struct termios oldt, newt;
  int ch;

  tcgetattr( STDIN_FILENO, &oldt );
  newt = oldt;
  newt.c_lflag &= ~( ICANON | ECHO );
  tcsetattr( STDIN_FILENO, TCSANOW, &newt );
  ch = getchar();
  tcsetattr( STDIN_FILENO, TCSANOW, &oldt );
  return ch;
}

getch()

于 2011-11-06T06:01:30.190 回答