洛谷题解 P1421 【小玉买文具】 发表于 2018-03-07 | 更新于 2020-03-26 | 阅读次数: 本文字数: 235 | 阅读时长 ≈ 1 分钟 简洁,高效 1234567891011#include<iostream>using namespace std;int main(){ int a,b=19,c,zo=0,ans=0; cin>>a>>c; zo=a*10+c; ans=zo/b; cout<<ans<<endl; } 题目详见:https://www.luogu.org/problem/show?pid=1421