摘要:
1 #include<bits/stdc++.h> 2 /*第一行两个整数n,d (1≤n≤10^5,1≤d≤20),表示切披萨的刀数和小明希望的 d 的大小。 3 接下来一共 n 行,每行一个整数 wi(0≤wi≤359),表示第 i 刀切的位置。*/ 4 #define N 100005 5 i 阅读全文
2021年12月9日
摘要:
1 #include<stdio.h> 2 #include<string.h> 3 int l, k, j, i, p; 4 int tim[5] = { 0 }; 5 int tim_sum[120][5] = { 0 }; 6 int ans[120] = { 0 }; 7 int table 阅读全文
摘要:
1 #include<bits/stdc++.h> 2 char str[100][40]; 3 char s[1005]; 4 5 int remark[2000][2] = { 0 }; 6 /*第一行为一个整数 n,表示违禁词库有 n(1≤n≤100) 个。 7 第 2 行到第 n+1 行,每 阅读全文
摘要:
1 #define _CRT_SECURE_NO_WARNINGS 1 2 #include<bits/stdc++.h> 3 char str[100][40]; 4 char s[1005]; 5 6 int remark[2000][2] = { 0 }; 7 /*第一行为一个整数 n,表示违 阅读全文
摘要:
jerry99的数列,只能算比较小的时候的部分 阅读全文
2021年8月29日
摘要:
#include <stdio.h> int main() { int a[20],b=0,c,j=0,sum=0; for (int i = 1; i <= 100; i++) { if (i % 7 == 0) { b++; a[b] = i; } c = b; } for (b; b > 0; 阅读全文
2021年8月24日
摘要:
#include<stdio.h> #include<math.h> int Prime(int n)//判断素数的工具(8以上有效) { for (int i = 2; i <= int(sqrt(n)); i ++) while (n% i == 0 ) return 0; return 1; 阅读全文
摘要:
#include <stdio.h> #include<math.h> int power(int b)//定义幂函数 { int i = 2, j = 1; if (b == 0) i = 1; for (; j < b; j++) i = 2 * i; return i; } int Sum(i 阅读全文
摘要:
#include<stdio.h> int div(int array[4], int b) { int c = 0, i = 3;//细节 while (b > 0) { c = b % 10; array[i] = c; b = b / 10; i--; } return 0; } void M 阅读全文