From 2fc9b9bc2ae0be6bd58951d4d3e00e290f96586d Mon Sep 17 00:00:00 2001 From: KiritoTRw <3021577574@qq.com> Date: Sun, 1 May 2016 18:43:32 +0800 Subject: [PATCH] Create 1619_****001.cpp --- QUSTOJ/1619_****001.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 QUSTOJ/1619_****001.cpp diff --git a/QUSTOJ/1619_****001.cpp b/QUSTOJ/1619_****001.cpp new file mode 100644 index 0000000..c6be735 --- /dev/null +++ b/QUSTOJ/1619_****001.cpp @@ -0,0 +1,19 @@ +#include +int main(){ + int a; + scanf("%d",&a); + switch(a){ + case 1:printf("Monday");break; + case 2:printf("Tuesday");break; + case 3:printf("Wednesday");break; + case 4:printf("Thursday");break; + case 5:printf("Friday");break; + case 6:printf("Saturday");break; + default:printf("Sunday"); + + + + } +return 0; + +}