From 4a90b5a044525c2c3c5fbb0ceb8693b5f09d1124 Mon Sep 17 00:00:00 2001 From: Kirito <1362050620@qq.com> Date: Mon, 5 Dec 2016 21:58:19 +0800 Subject: [PATCH] Create 1902.cpp --- QUSTOJ/1902.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 QUSTOJ/1902.cpp diff --git a/QUSTOJ/1902.cpp b/QUSTOJ/1902.cpp new file mode 100644 index 0000000..37d3763 --- /dev/null +++ b/QUSTOJ/1902.cpp @@ -0,0 +1,39 @@ +#include +#include +using namespace std; + +inline void test() +{ + int n,m; + cin>>n>>m; + int** a=new int*[n]; + for(int i=0;i>a[i][j]; + } + } + for(int j=0;j>n; + while(n--) test(); + return 0; +}