# TC1017 #WSQ03 Fun with number. http://programa-c.blogspot.mx/2010/04/codigos-c-suma-dos-numeros-enteros.html

1 min read

#include

using namespace std;

int main()

{

int x,y,z;

cout

cin >> x;

cout

cin >> y;

z=x+y;

cout

return 0;

}

#include

using namespace std;

int main()

{

int x,y,z;

cout

cin >> x;

cout

cin >> y;

z=x-y;

cout

return 0;

}

#include

using namespace std;

int main()

{

int x,y,z;

cout

cin >> x;

cout

cin >> y;

z=x*y;

cout

return 0;

}

#include

using namespace std;

int main()

{

int x,y,z;

cout

cin >> x;

cout

cin >> y;

z=x/y;

cout

return 0;

}

CC BY 4.0 # TC1017 #WSQ03 Fun with number. http://programa-c.blogspot.mx/2010/04/codigos-c-suma-dos-numeros-enteros.html by Carlos Adrian is licensed under a Creative Commons Attribution 4.0 International License.

Comments are closed.