0
已解决
汪笑成
初级光能
初级光能
题目链接: 酷町堂:1346
题目描述 Deion
买5支铅笔需要0.6元钱,那么买同样的铅笔n支,总共需要多少钱?
(结果保留2位小数)。
输入描述 Input Deion
输入为一行,表示买同样的铅笔的支数n(1≤n≤1000)。
输出描述 Output Deion
输出为一行,为总共需要的钱数。结果保留2位小数。
样例输入 Sample Input
16
样例输出 Sample Output
1.92
这是我编的代码:
#include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
cout<<0.6/5*n;
return 0;
}
求大佬们帮忙指点下