有以下程序 #include <stdio.h> main( ) { char b[4][10]; int i; for ( i=0; i<4; i++ ) scanf( "%s", b[i] ); for( i

admin2021-06-15  21

问题 有以下程序
#include   <stdio.h>
main( )
{  char  b[4][10];    int  i;
   for ( i=0; i<4; i++ )
        scanf( "%s", b );
   for( i=3; i>=0; i-- )
        printf( "%s ", b );
   printf( "\n" );
}
执行时若输入:  Peach flower is pink.<回车>  ,则输出结果是

选项 A、Peachflower is pink.
B、pink. is flower Peach
C、Peachflowerispink.
D、Pink is flower peach.

答案B

解析 第一个for循环对字符串数组初始化,第二for循环,从后向前打印字符串数组,因此,得到的答案是pink. is flower Peach,故答案为B选项。
转载请注明原文地址:https://kaotiyun.com/show/UStp777K
0

最新回复(0)