mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2024-12-29 14:11: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"
|
import "fmt"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
int a, b;
|
a := 0
|
||||||
fmt.Scanf("%d %d", &a, &b);
|
b := 0
|
||||||
fmt.Print("%d", a + b)
|
fmt.Scanf("%d %d", &a, &b)
|
||||||
|
fmt.Printf("%d", a + b)
|
||||||
}"""
|
}"""
|
||||||
|
|
||||||
client = JudgeServerClient(token=token, server_base_url="http://127.0.0.1:12358")
|
client = JudgeServerClient(token=token, server_base_url="http://127.0.0.1:12358")
|
||||||
|
Loading…
Reference in New Issue
Block a user