摘要:
第一题: include<bits/stdc++.h> using namespace std; bool search(const vector&arr,int target){ int l=0,r=arr.size()-1; while(l<=r){ int mid=l+(r-l)/2; if( 阅读全文
posted @ 2025-01-26 23:38
方韵希
阅读(22)
评论(0)
推荐(0)
摘要:
第一题:long loong include<stdio.h> int main(){ int N; scanf("%d",&N); printf("L"); for(int i=0;i<N;i++){ printf("o"); } printf("ng"); return 0; } 思路:要求输入 阅读全文
posted @ 2025-01-23 23:16
方韵希
阅读(30)
评论(0)
推荐(0)