From 292757027f66597bc96515ff72f090fe125efdcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?202108010302-=E8=83=A1=E7=A3=8A?= <13715451+nerin-hulei_717@user.noreply.gitee.com> Date: Thu, 23 Nov 2023 11:12:09 +0000 Subject: [PATCH] add tests/lab1/testcase/7.cminus. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 202108010302-胡磊 <13715451+nerin-hulei_717@user.noreply.gitee.com> --- tests/lab1/testcase/7.cminus | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/lab1/testcase/7.cminus diff --git a/tests/lab1/testcase/7.cminus b/tests/lab1/testcase/7.cminus new file mode 100644 index 0000000..56205cd --- /dev/null +++ b/tests/lab1/testcase/7.cminus @@ -0,0 +1,14 @@ +int main(){ + int a=5;int b[];int c[5]; + float d = .05; + /*** COMMENT1 + ***/ + while(a){ + a=a-1; + } + /*** /*COMMENT2 + ***/ + d=d+1; + d=d+2.0; + return 0; +} \ No newline at end of file -- Gitee