一个新人
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
```cpp #include using namespace std; int main(){ int m,t,s; cin>>m>>t>>s; if(t==0){ cout<<0; return 0; }else{ cout<<m-s/t; } return 0; } ```
在讨论《洛谷的问题》回复:
@[114homo](luogu://user/1328347)?
在讨论《洛谷的问题》回复:
@[Mitchell_Dracula](luogu://user/1350596) 哦,谢谢谢谢
在讨论《洛谷的问题》回复:
```cpp #include using namespace std; int main() { double t; int n; cin>>t>>n; cout<<fixed<<setprecision(3)<<t/3<<endl; cout<<n*2<<endl; return 0; } ```