c22.cpp

来自「此文件可以能帮你求体积」· C++ 代码 · 共 23 行

CPP
23
字号
// c22.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <iostream.h>
#include "strarray.h"
#include <string.h>
#include <stdlib.h>

extern const int Max = 100;
extern String stringList[Max];

int main(int argc, char* argv[])
{
	String s = NULL;
	while ( ReadString(s) )
		Insert( stringList, s );
	Output( stringList );

	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?