gcc -DONLINE_JUDGE -O2 -w -std=c99 {src_path} -lm -o {exe_path}main
g++ -DONLINE_JUDGE -O2 -w -std=c++11 {src_path} -lm -o {exe_path}main
編譯: javac {src_path} -d {exe_path} 執行: java -cp {exe_path} Main
class Main{}
int main(void)
,並且需要return 0;
(你可以試試看retrun
其他數字會怎樣)。long long int
聲明,使用 cin/cout
或 %lld
輸入輸出。
使用__int64
會導致編譯錯誤。C:
#include<stdio.h>
int main(){
int n;
while(scanf("%d",&n)!=EOF){
//做一些事
}
return 0;
}
C++:
#include<iostream>
using namespace std;
int main(){
int n;
while(cin>>n){
//做一些事
}
return 0;
}
Java:
import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner sc=new Scanner(System.in);
while(sc.hasNext()){
int n=sc.nextInt();
//做一些事
}
}
}