You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package cap3
|
|
|
|
func Work17(a, b, c int) int {
|
|
result := 70*a + 21*b + 15*c
|
|
for result > 105 {
|
|
result -= 105
|
|
}
|
|
|
|
return result
|
|
}
|
|
|