From 19540ec6528bc76150daa6ecd314841c8190c3a3 Mon Sep 17 00:00:00 2001 From: Zengtudor Date: Thu, 3 Oct 2024 23:29:49 +0800 Subject: [PATCH] update --- CMakeLists.txt | 3 ++- P7076/P7076.cpp | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4934066..1051b5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,8 +8,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) if(NOT CMAKE_BUILD_TYPE) - set(CMAKE_BUILD_TYPE Release) + set(CMAKE_BUILD_TYPE Debug) endif() + message("Build type is [${CMAKE_BUILD_TYPE}]") diff --git a/P7076/P7076.cpp b/P7076/P7076.cpp index 20db091..f5b59b7 100644 --- a/P7076/P7076.cpp +++ b/P7076/P7076.cpp @@ -1,5 +1,9 @@ -#include +#include + +using std::cin,std::cout,std::iostream; +int n,m,c,k; int main(){ + cin>>n>>m>>c>>k; } \ No newline at end of file