PAT中:
error: ‘gets’ was not declared in this scope
gets(str);
原因:
gets()方法已经不被PAT编译器支持了,因此要采用其他方法。
header添加:
#include <iostream>
using namespace std;
将gets(str);改为:
cin.get(str,n);//n为str数组的长度
PAT中:
error: ‘gets’ was not declared in this scope
gets(str);
原因:
gets()方法已经不被PAT编译器支持了,因此要采用其他方法。
header添加:
#include <iostream>
using namespace std;
将gets(str);改为:
cin.get(str,n);//n为str数组的长度
-std=c++0xcmake#define nullptr NULL
【问题描述】由于学习Java用的编译器为Eclipse和IDEA今天使用De
#include
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M