摘要: A: 签到题。 1 #include <iostream> 2 using namespace std; 3 int main(void) 4 { 5 long long n,x,t; 6 cin>>n>>x>>t; 7 if(n%x==0)cout<<n/x*t<<endl; 8 else cou 阅读全文
posted @ 2020-08-24 21:52 yanying 阅读(201) 评论(0) 推荐(0) 编辑