0
Can somebody help me with Match Results the course is go
please help me
3 Respostas
+ 1
Could you please provide more information about this issue?
0
sure
0
results := []string{"w", "l", "w", "d", "w", "l", "l", "l", "d", "d", "w", "l", "w", "d"}
int a,b;
int w,l,d;
if(a>b){
fmt.Println("w")
}
else if(a<b){
fmt.Println("l")
}
else{
fmt.Println("d")
}
}