【算法笔记总结】字符串存储到二维数组

#include 
#include 
#include 
using namespace std;

//字符串存到二维数组里面(①存到一维数组  ②一维数组转存到二维数组) 
int main()
{
  char str[100];
  while(gets(str)){
	cout<

 

你可能感兴趣的:(算法笔记总结)