eduardogaararebel
Bovino adicto
- Desde
- 30 May 2011
- Mensajes
- 550
- Tema Autor
- #1
Hola, alguno de ustedes podría traducirme este programa de C++ a C#
#include <iostream>
using namespace std;
int funcion(int r, int s);
int main() {
int x, y;
x = 10;
y = 20;
printf("x,y ->" %d x << ", " << y << endl;
cout << "funcion(x,y) ->"
<< funcion(x, y) << endl;
cout << "x,y ->" << x << ", " << y << endl;
cout << "funcion(10,20) ->"
<< funcion(10, 20) << endl;
return 0;
}
int funcion(int r, int s) {
r = r + 2;
s = s - 5;
return r+s;
}
#include <iostream>
using namespace std;
int funcion(int r, int s);
int main() {
int x, y;
x = 10;
y = 20;
printf("x,y ->" %d x << ", " << y << endl;
cout << "funcion(x,y) ->"
<< funcion(x, y) << endl;
cout << "x,y ->" << x << ", " << y << endl;
cout << "funcion(10,20) ->"
<< funcion(10, 20) << endl;
return 0;
}
int funcion(int r, int s) {
r = r + 2;
s = s - 5;
return r+s;
}