Search
 
SCRIPT & CODE EXAMPLE
 

CPP

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 ();
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: dignità 
Cpp :: Magical Doors codechef solution in c++ 
Cpp :: inverse elment of array c++ 
Cpp :: C++ concept simple requirements 
Cpp :: csv 
Cpp :: Swift if...else Statement 
Cpp :: frac{2}{5}MR^2 typed in c++ 
Cpp :: nested loop c++ program example 
Cpp :: const char * to std::wstring 
Cpp :: gcd of two number in c++ stl 
Cpp :: c++ rainbow text 
Cpp :: Call db.close() on Button_Click (QT/C++) 
Cpp :: template in cpp 
Cpp :: c++ ascii value 
Cpp :: while loop in c++ 
Cpp :: c++ vector remove element by value 
Cpp :: Set Specific Time in youtube Video url 
Cpp :: c++ quicksort 
Cpp :: decrement c++ 
Cpp :: c++ forloop 
C :: _CRT_SECURE_NO_WARNINGS 
C :: random number between 2 in C 
C :: vscode arduino [Warning] Output path is not specified. Unable to reuse previously compiled files. Upload could be slow. See README. 
C :: printf with bool 
C :: how to get user input in c 
C :: Successeur récurssive 
C :: clrscr in c 
C :: how to sleep in c 
C :: multiplication in c 
C :: CL/cl.h: No such file or directory 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =