在C ++中将字符串转换为字符的方阵网格

在本教程中,我们将讨论将字符串转换为字符的方阵网格的程序。

为此,我们将提供一个字符串。我们的任务是以具有一定数量的行和列的矩阵网格格式打印该特定字符串。

示例

#include <bits/stdc++.h>
using namespace std;
//将字符串转换为网格格式
void convert_grid(string str){
   int l = str.length();
   int k = 0, row, column;
   row = floor(sqrt(l));
   column = ceil(sqrt(l));
   if (row * column < l)
      row = column;
   char s[row][column];
   for (int i = 0; i < row; i++) {
      for (int j = 0; j < column; j++) {
         s[i][j] = str[k];
         k++;
      }
   }
   //打印新的网格
   for (int i = 0; i < row; i++) {
      for (int j = 0; j < column; j++) {
         if (s[i][j] == '\0')
            break;
         cout << s[i][j];
      }
      cout << endl;
   }
}
int main(){
   string str = "nhooo";
   convert_grid(str);
   return 0;
}

输出结果

TUTO
RIAL
SPOI
NT