Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

#include <iostream>
#include <conio.h>
using namespace std;
#define GIOITHIEU "nhap x, y va kq "
void main()
{
int x;
int y;
int z;
int n,m,k,h;
clrscr();
cout<<GIOITHIEU;
cout<<"\n";
cout<<"nhap x=";
cin>>x;
cout<<"nhap y=";
cin>>y;
cout<<"kq x+y="<<x+y<<"\n";
z=x+y;
m=z++;
n=++z;
k=(n>m) ? m:n;
cout<<"\n";
cout<<"k="<<k;
h(n>m) ? n;m;
cout<<"\n";
cout<<"h="<<h;
getch();
return;
}