wydxry
wydxry
全部文章
分类
题解(86)
归档
标签
去牛客网
登录
/
注册
wydxry的博客
全部文章
(共91篇)
题解 | #简单运算#
#include <iostream> using namespace std; int main() { // write your code here...... int a,b; cin>>a>>b; printf("%d...
C++
2021-11-06
3
660
题解 | #获取两数中的较大值#
#include <iostream> using namespace std; int main() { // write your code here...... int a,b; cin>>a>>b; cout&...
C++
2021-11-06
0
300
题解 | #两数求和#
#include <iostream> using namespace std; int main() { // write your code here...... int a,b; cin>>a>>b; cout&...
C++
2021-11-06
1
460
题解 | #实现四舍五入#
#include <iostream> using namespace std; int main() { double d; cin >> d; // write your code here...... int ans=0; ...
C++
2021-11-06
1
424
题解 | #定义变量#
#include <iostream> using namespace std; int main() { // write your code here...... char c; cout<<sizeof(c)<<endl; ...
C++
2021-11-06
2
608
题解 | #正方形图案#
#include <bits/stdc++.h> using namespace std; int main() { int n; while(scanf("%d",&n)!=EOF){ for(int i=0;i<n;i++){ ...
C++
2021-11-06
0
319
题解 | #逆序输出#
#include <bits/stdc++.h> using namespace std; int main() { int a[10]={0}; for(int i=0;i<10;i++){ scanf("%d",&a[i]); }...
C++
2021-11-06
0
302
题解 | #N个数之和#
#include <bits/stdc++.h> using namespace std; int main() { int n=0,sum=0,num=0; scanf("%d",&n); while(n--){ scanf("%d",&...
C++
2021-11-06
0
331
题解 | #时间转换#
#include <bits/stdc++.h> using namespace std; int main() { int seconds; scanf("%d",&seconds); int h=0,m=0,s=0; h=seconds/360...
C++
2021-11-06
0
379
题解 | #实践出真知#
#include <bits/stdc++.h> using namespace std; int main() { int max=-1; ...
C++
2021-11-06
0
291
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页