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数组的长度
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。