#12754: 測時時WA,但送上去竟然AC


i610494 (wago)

學校 : 國立嘉義高級中學
編號 : 68247
來源 : [114.136.228.105]
最後登入時間 :
2021-11-13 12:57:44
d614. 簡易加法運算 -- 葆葆 | From: [163.27.3.90] | 發表日期 : 2017-09-25 13:13

以下為我的程式碼:

#include <iostream>
#include <string.h>
#include <cstdlib>
using namespace std;

int main(int argc, char** argv) {
char k[1000001] , *p;
int t;
long long int ans;
scanf("%d",&t);
getchar();
while(t--) {
ans=0;
cin.getline(k,1000000);
p=strtok(k," ");
while(p) {
if(p!="+") ans+=atoi(p);
p=strtok(NULL," ");
}
printf("%lld\n",ans);


}

return 0;
}

在測試時他說我的答案為0

但送上去時卻AC

 

 
ZeroJudge Forum