Toggle navigation
Inicio
Artículos
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Tutoriales
(current)
PROGRAMACIÓN GENERAL
C / C++ / C#
Java
Visual Basic
Objective-C
Python
Perl
Ruby
Delphi
PROGRAMACIÓN WEB
ASP
PHP
HTML
CSS
Javascript
Aplicaciones prefabricadas
BASES DE DATOS
SQL
Mongo DB
Oracle
MySQL
SQL Server
PROGRAMACIÓN APPs
Android
iOS
WindowsPhone
BlackBerry
Noticias
Foros
Eventos
Empleo
Inicio
Foros
Foros de Visual Basic
Como?
×
Conéctate a Programacion.net
Conectarme a Programacion.net
Como?
MiniYoyi
08 de Septiembre del 2005
Como escribo este codigo en Visual:
int factorial (int n) {
if (n<=0)
return 1;
else
return (n*factorial(n-1));
}
Jos?opez
08 de Septiembre del 2005
public function Factorial (n as integer) as integer
if (n<=0) then
return 1
else
return (n*factorial(n-1))
end if
end function
José Lopez
http://www.factoriasoftware.com