Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

#include<iostream.

h>

#include<conio.h>

void main()

int x=3,y=4;

if(x>y)

cout<<"x is greater than y"<<endl;

else

cout<<"x is smaller than y "<<endl;

getch();

You might also like