03 2025 档案

摘要:#include <bits/stdc++.h> using namespace std; int number = 0; class Bank{ private: string name; string IDN; string p; vector<string> log; double money 阅读全文
posted @ 2025-03-08 09:49 王一行(小号) 阅读(4) 评论(0) 推荐(0) 编辑
摘要:#include <bits/stdc++.h> using namespace std; int gcd(int a,int b) { if(b==0){ return a; }else{ return gcd(b,a%b); } } int main() { string n; getline( 阅读全文
posted @ 2025-03-02 14:46 王一行(小号) 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2025-03-01 14:47 王一行(小号) 阅读(0) 评论(0) 推荐(0) 编辑
摘要:#include <bits/stdc++.h> using namespace std; bool greater3(int value){ return value>3; } int main(){ vector<int> v; int arr[] = {1,2,3,4,5}; vector<i 阅读全文
posted @ 2025-03-01 09:50 王一行(小号) 阅读(3) 评论(0) 推荐(0) 编辑