最近练一个类似 Online Judge 的题目,结果一直错误,请教如何解决
题目 : https://gpe2.acm-icpc.tw//showproblemtab.php?probid=2008-01&cid=2
我写的 C 程式码 :
#include<stdio.h>
#include<stdlib.h>
/*========== Prototype ==========*/
void renew_realloc_pos(int*, int, int*);
bool renew_plus_pos(int*, int*, int*);
/*_______________________________*/
int main()
{
int maxNum = 0, lenNum = 0;
int val_case = 1;
int* pos;
while (scanf("%d %d", &maxNum, &lenNum) == 2)
{
/*----- Initialize -----*/
pos = new int;
pos = 1;
renew_realloc_pos(pos, 1, &maxNum);
/*----- Output -----*/
int rep = 1, i = 0;
printf("case ..
访客只能看到部份内容,免费 加入会员 或由脸书 Google 可以看到全部内容