摘要: #include <iostream>using namespace std; struct Node{ int data; Node* next;}; struct List{ Node* head; int length;}; int main() { List L; L.head = null 阅读全文
posted @ 2023-09-14 21:44 财神给你送元宝 阅读(7) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std; long long f(long long a){ long long day=0; if(a<=5) { return 1; } else { a=a-5; day+=1; while(1) { day+=a/4; if 阅读全文
posted @ 2023-09-14 21:08 财神给你送元宝 阅读(10) 评论(0) 推荐(0) 编辑