最近練一個類似 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 可以看到全部內容