From 01eae737f3b00a81062a2e78a51b02ad74900fd5 Mon Sep 17 00:00:00 2001 From: Aishwariya Saha <114222814+aishwariyasaha@users.noreply.github.com> Date: Tue, 11 Oct 2022 23:35:48 +0530 Subject: [PATCH] If-else statement --- If-else statment.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 If-else statment.cpp diff --git a/If-else statment.cpp b/If-else statment.cpp new file mode 100644 index 00000000..0d84058c --- /dev/null +++ b/If-else statment.cpp @@ -0,0 +1,13 @@ +#include +int main() +{ +int Aishwariya,Champa; +printf("enter the value of Aishwariya"); +scanf("%d",&Aishwariya); +printf("enter the value of Champa"); +scanf("%d",&Champa); +if (Aishwariya>Champa) +printf("Aishwariya is big"); +else +printf("Champa is big"); +}