首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

ACM runtime error,该如何处理

2013-06-25 
ACMruntime errorACM[解决办法]请注意题中: The first line of the input specifies the number of teleph

ACM runtime error

                                                  ACM                                              
[解决办法]
请注意题中:
 The first line of the input specifies the number of telephone numbers in the directory (up to 100,000) as a positive integer alone on the line.

char input[10000][7];
改为
char input[100000][7];
可AC。

[解决办法]
顶楼上,是楼上说的样子

热点排行