0
已解决
杨坤泽
新手守护
新手守护
https://ke.codingtang.com/#/problem/problemSub?id=1000
- #include<iostream>
- using namespace std;
- int main(){
- cout<<"Hello, World!";
- return 0;
- }
https://ke.codingtang.com/#/problem/problemSub?id=1952
- #include<bits/stdc++.h>
- using namespace std;
- int main(){
- int m,n;
- cin>>m>>n;
- cout<<50.23*m<<" "<<(50.23*2+12.41)*n;
- return 0;
- }