algorithms-go/luogu/基础题/P1421 小玉买文具/main.go
2021-04-06 17:59:53 +08:00

34 lines
676 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package main
import "fmt"
/**
题目描述
班主任给小玉一个任务,到文具店里买尽量多的签字笔。
已知一只签字笔的价格是 11 元 99 角,而班主任给小玉的钱
是 aa 元 bb 角,小玉想知道,她最多能买多少只签字笔呢。
输入格式
输入只有一行两个整数,分别表示 aa 和 bb。
输出格式
输出一行一个整数,表示小玉最多能买多少只签字笔。
输入输出样例
输入 #1
10 3
输出 #1
5
说明/提示
数据规模与约定
对于全部的测试点保证0 <=a<= 10^4, 0<=b<=9
*/
func main() {
var (
a int
b int
)
fmt.Scanf("%d %d", &a, &b)
fmt.Print((a*10 + b) / 19)
}