Q:为什么我的程序在自己的电脑上正常编译,而系统告诉我编译错误!

A:GCC 的编译标准与VC6有些不同,更加符合 c/c++ 标准:

main 函数必须返回 int, void main 的函数声明会报编译错误。

i 在循环外失去定义 "for (int i = 0...){...}"

itoa 不是 ansi 标准函数。

__int64 不是 ANSI 标准定义,只能在 VC 使用, 但是可以使用 long long 声明64位整数。

如果用了 __int64, 试试提交前加一句 #define __int64 long long

C 语言中 long long 型数据的标准输入输出格式是 %lld 而非 %I64d

XUJCOJ 不支持万能头文件 "#include<bits/stdc++.h>"。