You are on page 1of 1

#include "stdafx.

h"
#include <conio.h>
#include <stdio.h>
#include <iostream>
using namespace std;
void main()
{
cout << "Second Smester Subjects";
int Calculas_Math, Discrete_Math, English, Introdution_to_Programing,
Introduction_to_Business;
Calculas_Math= 202;
Discrete_Math= 301;
English= 201;
Introdution_to_Programing= 201;
Introduction_to_Business= 211;
cout << "
1- Calculas_Math = MTH" << Calculas_Math;
cout << "
2- Discrete_Math = MTH" << Discrete_Math;
cout << "
3- English = ENG" << English;
cout << "
4- Introdution_to_Programing = CS" << Introdution_to_Programing;
cout << "
5- Introduction_to_Business = MGT" << Introduction_to_Business;
_getche();
}

You might also like