牛客7777779号
牛客7777779号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客7777779号的博客
全部文章
(共86篇)
题解 | #又一版 A+B#
#include <algorithm> #include <iostream> using namespace std; #define N 1000000 void change(int m,long long n){ int a[N]={0},i=0; if...
2023-03-20
0
329
题解 | #取中值#
这题的中位数不需要排序,合并完输出数组的最中间那个数就行。 #include <iostream> using namespace std; #define N 1000000 void input(int a[],int n){ for (int i = 0; i < n; ...
2023-03-20
0
378
题解 | #牛牛的字符菱形#
#include <iostream> using namespace std; #define N 5 int main(){ //打印空格 int i,j; char ch; cin >>ch; for (i = 0;i < N/2;i++)...
2023-03-19
0
274
题解 | #回文字符串#
设置两个“指针”:i、j,分别指向字符串的首尾;判断两个指针所指的字符是否相等,相等则继续向中间靠拢,否则退出循环,输出false #include <iostream> using namespace std; int main(){ string str; while(cin ...
2023-03-19
0
323
题解 | #球的半径和体积#
知识点:⚪的半径R:(x1-x0)^2+(y1-y0)^2+(z1-z0)^2=R^2⚪的体积V:V = 4/3 * PI * R*R*RC++输出格式化浮点数:fixed表示输出浮点数;setprecision(n),n为小数后有效位数 #include <iomanip> #incl...
2023-03-19
0
419
题解 | #旋转矩阵#
注意!逆时针旋转 #include <iostream> using namespace std; #define N 9 //判断两个矩阵是否相同 int same(int a[][N],int b[][N],int na,int nb){ int i,j,flag = 1;//fl...
2023-03-18
0
386
题解 | #矩阵转置#
注意转置的时候,只对上三角或者下三角操作即可,如果对全部矩阵每一个元素都换一次,则操作回原矩阵,输出就会没区别 #include <iostream> using namespace std; #define N 100 int main(){ int n; while (cin ...
2023-03-18
0
349
题解 | #八进制#
#include <iostream> using namespace std; #define N 100 int main(){ int n; while (cin >>n){ int i = 0; int a[N] = {-1,-1,-1,-1,-1,-1...
2023-03-18
0
309
题解 | #统计单词#
#include <iostream> using namespace std; int main(){ string str; while (getline(cin,str)){ int i,count,j=0; //count是单词长度 for (i = 0; str[...
2023-03-18
0
392
题解 | #打印日期#
#include <iostream> using namespace std; #include <iomanip> int month[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int main(){ int y,n,fl...
2023-03-18
0
342
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页