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"); +}