problem
- 给你三个数A,B,C
- 求A*0.2+B*0.3+C*0.5的值。
solution
- 这不是语法题吗
- 我都要不好意思出来发文章了
codes
#includeusing namespace std;int main(){ int A, B, C; cin>>A>>B>>C; cout< <<'\n'; return 0;}
本文共 262 字,大约阅读时间需要 1 分钟。
#includeusing namespace std;int main(){ int A, B, C; cin>>A>>B>>C; cout< <<'\n'; return 0;}
转载于:https://www.cnblogs.com/gwj1314/p/9444647.html