最新Lemon哪里找:
GitHub上搜lemon plus,第一个就是了:
https://github.com/Dust1404/Project_LemonPlus
按照README.md的指示装就好了,linux和windows都可以
然后好像所有的常见问题User Manual里都有。
SPJ如下:
#include <bits/stdc++.h>
using namespace std;
#define get(x) fprintf(f_score, "%d\n", x), exit(0);
string s;
char t[1005];
int main(int argc, char **argv) {
FILE *f_stdin=fopen(argv[1],"r");//标准输入
FILE *f_out=fopen(argv[2],"r");//选手输出
FILE *f_stdout=fopen(argv[3],"r");//标准输出
int sco = atoi(argv[4]); //该测试点最大得分
FILE *f_score=fopen(argv[5],"w");//分数输出
FILE *f_msg=fopen(argv[6],"w");//信息返回
//string
fscanf(f_stdin, "%s", &s[0]);
fprintf(f_msg, "%s", s.c_str());
//char array
fscanf(f_stdin, "%s", t);
fscanf(f_stdin, "%[^\n]", t);
fprintf(f_msg, "%s", t);
get(sco);
}
注意argv[4]的作用
注意string和char的读入输出
一整行可以看这个https://www.cnblogs.com/AlvinZH/p/6798023.html