帅气哥哥
帅气哥哥
全部文章
分类
归档
标签
去牛客网
登录
/
注册
帅气哥哥的博客
全部文章
(共158篇)
题解 | #X形图案#
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in =...
2023-07-26
0
259
题解 | #图片整理#
#include <stdio.h> #include <string.h> int Qsort(void* p1, void* p2) { return *(char*)p1 - *(char*)p2; } int main() { char arr[1...
2023-07-25
0
233
题解 | #数字在升序数组中出现的次数#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param numsLen int nums数组长度 * @param k int整型 * @return int整型 */ in...
2023-07-23
0
268
题解 | #密码检查#
#include <ctype.h> #include <stdio.h> #include <string.h> int main() { int n = 0; int num[3] = {0}; scanf("%d"...
2023-07-22
0
274
题解 | #记负均正#
#include <stdio.h> int main() { int a = 0; int b = 0; int m; double ave = 0.0; int n; scanf("%d", &n); ...
2023-07-21
0
244
题解 | #等差数列#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { // 注意 while 处理多个 case printf("%d&quo...
2023-07-20
0
227
题解 | #尼科彻斯定理#
#include <stdio.h> #include <math.h> int main() { int m = 0; double m_2 = 0.0; int ret = 0; while (scanf("%d", ...
2023-07-20
0
192
题解 | #计算日期到天数转换#
#include <stdio.h> int is_years(int y) { if (y % 4 == 0 && y % 100 != 0) { return 1; } if (y % 400 == 0) { ...
2023-07-19
0
244
题解 | #打印从1到最大的n位数#
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 最大位数 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ #include <math...
2023-07-19
0
294
题解 | #三个数的最大乘积#
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 最大乘积 * @param A int整型一维数组 * ...
2023-07-18
1
337
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页