06 2021 档案

摘要:1 #include <bits/stdc++.h> 2 using namespace std; 3 long long n,x,t,m,k; 4 int main(){ 5 cin>>k; 6 while(k--){ 7 cin>>n>>x>>t; 8 m=min(t/x,n); 9 cout< 阅读全文
posted @ 2021-06-30 16:05 墨鳌 阅读(35) 评论(0) 推荐(0)
摘要:1 #include <stdio.h> 2 3 /*structure declaration*/ 4 struct employee{ 5 char *name; 6 int employee_id; 7 double salary; 8 }; 9 10 struct employee make 阅读全文
posted @ 2021-06-07 16:32 墨鳌 阅读(82) 评论(0) 推荐(0)
摘要:1 import java.util.Iterator; 2 import java.util.NoSuchElementException; 3 4 public class ArrayList<E> implements Iterable<E> { 5 private final int INI 阅读全文
posted @ 2021-06-03 20:18 墨鳌 阅读(72) 评论(0) 推荐(0)