题解 | #我是大V#
我是大V
https://www.nowcoder.com/practice/5c329570ba034871a96299df21e80e51
#include<stdio.h>
int main() {
char ba[3][5] = {'v', ' ', ' ', ' ', 'v', ' ', 'v', ' ', 'v', ' ', ' ', ' ', 'v', ' ', ' '};
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 5; j++) {
printf("%c", ba[i][j]);
}
printf("\n");
}
return 0;
}

查看28道真题和解析