立志实干
立志实干
全部文章
分类
无链接题解(1)
题解(49)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
(共26篇)
叠筐2074
//试题下面讨论都说,这格式很坑人。在网站上提交,答案错误。我自己试的,是对的。小螃蟹提出装在数组里再输出,我当时就想着怎么直接输出来着。可以直接用字符数组不用那么麻烦得。char matrix[MAXSIZE][MAXSIZE]; #include <iostream> #includ...
王道机试
例题
第二章
M
2021-06-03
0
538
题解 | #对称平方数1#啰里啰嗦
/* 10<j<100,不能这么写!!!!!!!!!!!!!!!!!!! 平方不能写成a^2,要用pow() */ #include <iostream> #include <cstdio> using namespace std; int main(...
王道机试
例题
第二章
M
2021-05-09
0
560
题解 | #对称平方数1#某大佬
#include<stdio.h> int main() { int a,b; for(int i=0;i<=256;i++) { a=i*i; b=0; while(a>0) { b=b*10+a%10; ...
王道机试
例题
第二章
M
大佬代码
2021-05-09
0
500
题解 | #反序数#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; for(int a=1;a<10;++a){ for(int b=0;b<...
王道机试
E
例题
第二章
2021-05-09
0
513
题解 | #abc#
#include <iostream> #include <cstdio> using namespace std; int main(){ for(int a=1;a<5;++a){ for(int b=1;b<5;++b){ ...
王道机试
E
例题
第二章
2021-05-09
1
492
题解 | #xxx定律#
#include <iostream> #include <cstdio> using namespace std; int main() { int n; int k=0; while(scanf("%d",&n)!=EOF) {...
王道机试
E
例题
第二章
2021-05-08
0
447
题解 | #日期累加#
/*这题果然跨年,烦*/ #include <iostream> #include <cstdio> using namespace std; int m1[12]= {31,29,31,30,31,30,31,31,30,31,30,31}; int m2[12]= ...
王道机试
D
例题
第二章
吐血
2021-05-08
0
474
题解 | #abc#(烦)
#include <iostream> #include <cstdio> using namespace std; int m1[13]={0,31,29,31,30,31,30,31,31,30,31,30,31}; int m2[13]={0,31,28,31,30...
王道机试
E
例题
第二章
2021-05-08
0
504
例题4.6 Number Sequence(书上默写,但在网站上运行超时)建议重做3次,|||
/* 分三步,主函数,kmp,求next数组 主函数就是输入输出 书上的代码默写 求next数组太恶心!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */ #include <iostream> #include <cstdio> usi...
王道机试
D
例题
第四章
2021-04-13
0
456
二进制数2021.04.05
#include <iostream> #include <cstdio> #include <stack> using namespace std; stack<int> mystack; int main(){ int n; ...
王道机试
E
例题
第六章
2021-04-05
0
563
首页
上一页
1
2
3
下一页
末页