立志实干
立志实干
全部文章
题解
无链接题解(1)
归档
标签
去牛客网
登录
/
注册
立志实干的博客
全部文章
/ 题解
(共49篇)
叠筐2074
//试题下面讨论都说,这格式很坑人。在网站上提交,答案错误。我自己试的,是对的。小螃蟹提出装在数组里再输出,我当时就想着怎么直接输出来着。可以直接用字符数组不用那么麻烦得。char matrix[MAXSIZE][MAXSIZE]; #include <iostream> #includ...
王道机试
例题
第二章
M
2021-06-03
0
547
题解 | #百鸡问题#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int x,y,z...
习题
王道机试
E
第二章
2021-06-01
9
567
题解 | #与7无关的数#
#include <iostream> #include <cstdio> using namespace std; int main(){ int n; while(scanf("%d",&n)!=EOF){ int sum=0;...
习题
王道机试
E
第二章
2021-05-31
0
481
题解 | #对称平方数1#啰里啰嗦
/* 10<j<100,不能这么写!!!!!!!!!!!!!!!!!!! 平方不能写成a^2,要用pow() */ #include <iostream> #include <cstdio> using namespace std; int main(...
王道机试
例题
第二章
M
2021-05-09
0
568
题解 | #对称平方数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
507
题解 | #反序数#
#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
519
题解 | #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
490
题解 | #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
450
题解 | #日期累加#
/*这题果然跨年,烦*/ #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
467
题解 | #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
513
首页
上一页
1
2
3
4
5
下一页
末页