
天梯赛
久石_giao
今天是个好日子!!!
展开
-
天梯赛 L1-025. 正整数A+B
全排列#include<iostream>#include<algorithm>using namespace std;int main(){ int t; cin>>t; while(t--) { int n,i; cin>>n; int a[10]= {1,2,3,4,5,6,7,8,9,10};原创 2017-04-06 15:24:06 · 691 阅读 · 0 评论 -
如何输出程序段所运行时间
陈越姥姥讲的数据结构很不错(⊙o⊙)!#include<stdio.h>#include<time.h>#include<math.h>clock_t start,stop; //包含在time.h头文件中double duration;#define MAXN 10int main(){ int i; double a[MAXN]; start=cl原创 2017-05-18 21:14:32 · 525 阅读 · 0 评论