Horje
unity decompile il2cpp Code Example
unity decompile il2cpp
#include <iostream.h>
#include <conio.h>
void main ()
{
 int x, y;
 cout << "x= ";
 cin >> x;
 cout << "y= ";
 cin >> y;
 cout << "x+y= " << x+y << endl;
 cout << "x-y= " << x-y << endl;
 cout << "x*y= " << x*y << endl;
 if (y != 0)
 cout << "x/y= " << (float)x/y << endl;
getch ();
}




Cpp

Related
how to display score using SDL in c++ Code Example how to display score using SDL in c++ Code Example
how to use printf with microseconds c++ Code Example how to use printf with microseconds c++ Code Example
Write a C++ program to Computing Mean and Median Using Arrays Code Example Write a C++ program to Computing Mean and Median Using Arrays Code Example
mid of linked list Code Example mid of linked list Code Example
1491. Average Salary Excluding the Minimum and Maximum Salary leetcode solution in c++ Code Example 1491. Average Salary Excluding the Minimum and Maximum Salary leetcode solution in c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7