mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2024-12-28 04:51:44 +00:00
Update client.py
This commit is contained in:
parent
2bfc1bab19
commit
d35d7333fe
@ -111,9 +111,10 @@ print(int(s1[0]) + int(s1[1]))"""
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
int a, b;
|
||||
fmt.Scanf("%d %d", &a, &b);
|
||||
fmt.Print("%d", a + b)
|
||||
a := 0
|
||||
b := 0
|
||||
fmt.Scanf("%d %d", &a, &b)
|
||||
fmt.Printf("%d", a + b)
|
||||
}"""
|
||||
|
||||
client = JudgeServerClient(token=token, server_base_url="http://127.0.0.1:12358")
|
||||
|
Loading…
Reference in New Issue
Block a user