天梯赛
久石_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 · 716 阅读 · 0 评论 -
如何输出程序段所运行时间
陈越姥姥讲的数据结构很不错(⊙o⊙)!#include<stdio.h> #include<time.h> #include<math.h> clock_t start,stop; //包含在time.h头文件中 double duration; #define MAXN 10 int main() { int i; double a[MAXN]; start=cl原创 2017-05-18 21:14:32 · 553 阅读 · 0 评论
分享