怎么编程可以输多行数c语言,如何多行输入并且输入后执行

  • Post author:
  • Post category:其他


谢谢ldsh304  marlow  炎天  九转星河  client苏

你们给的代码我都好好看了

int main()

{

char str2[30][31];

char temp;

int len;

int i=0;

int j=0;

while(gets(str2[i])!=NULL)           //取一行的字符串

{

len=strlen(str2[i]);

for(j=0; j

{                                           //

temp = str2[i][j];                     //

str2[i][j] = str2[i][len-1-j];         //

str2[i][len-1-j] = temp;               //

}

i++;                                        //下一行

}

for(j=i-1;j>=0;j–)                             //以ctrl+c结束

{

printf(“%s\n”,str2[j]);                     //输出逆反后的数组

}

return 0;

}

———————————————–分割线————————-1