Open-Source
#include <stdio.h>

int main()
{
    char a[3][5] = {{\'m\',\'a\',\'n\',\'g\',\'o\'},{\'a\',\'p\',\'p\',\'l\',\'e\'},{\'g\',\'r\',\'a\',\'p\',\'e\'}};

    for(int i = 0; i < 3; i++)
    {
        for(int j = 0;j < 5; j++)
        {
            printf("%c",a[i][j]);
        }
        printf("\n");
    }

    return 0;
}

  

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2022-12-23
  • 2021-11-30
  • 2021-11-30
  • 2021-11-12
  • 2021-11-30
  • 2021-10-27
  • 2021-05-19
猜你喜欢
  • 2021-11-30
  • 2022-12-23
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
相关资源
相似解决方案