摘要:
落谷p1226 理论依据 #include<iostream> #include<cstdio> using namespace std; long long fun(long long a,long long b,long long c){ long long An = 1; long long 阅读全文
摘要:
落谷题目p1993 #include<iostream> #include<cstdio> using namespace std; typedef struct item { /* data */ int u; int v; int w; }Item; Item a[5000+5]; int n, 阅读全文
摘要:
public void test6(){//将数组中的每个数后移一个位置 int[] nums = {1,2,3,4,5}; int change = nums[0]; for(int i = 1;i<=nums.length;i++){ int index = i%nums.length; int 阅读全文