|
|
Runuo Programming | ||
Discussion by chaosx2x with 4 Replies.
Last Update: August 18, 2008, 7:27 am | |||
![]() |
|
|
I really do wish I could help you with your problem, but alas, I cannot. Perhaps you should check out the RunUO forums. Last time I was there it was a hoppin' place.
If not, you could try the EasyUO forums. It's a scripted input program for UO, but there are a lot of coders lurking around there that have a lot of experiance with RunUO.
BTW, if you do see this reply, could you e-mail me with the IP of your server, or perhaps your URL? I'd love to stomp around for a while
[EDIT]
Oh, hey, I forgot to mention that you should check to make sure your server name, database name, table name, and all that is correct. Also check your function calls and make sure that your select and query calls are referancing the correct database connection.
QBRADQ
Runuo Programming
Write a program to calculate the factorial of the number entered by a user.Create program by using static functions and static variables.
Hint:- The limit of users input should be 1-20.
Using System;
Using System.Collections.Generic;
Using System.Text;
Namespace Exercise_3
{
public class Fact
{
static int f;
public static int factorial(int and)
{
f = and;
int I;
for (I = and - 1; I >= 1; I--)
{
f = f * I;
}
return f;
}
}
class TestFactorial
{
static void Main(string[] args)
{
int I;
for(I=1;I<=2;I++)
{
Console.Write("Enter the number: ");
int num = Convert.ToInt16(Console.ReadLine());
Fact.Factorial(num);
}
Console.ReadLine();
}
}
}
Need the program to be executed successfully.
-reply by zeta
Runuo Programming
Write a program to calculate the factorial of the number entered by a user. Create this program by using static functions and static variables.
Hint:-The limit of users input shoul be 1-20
Using System;
Using System.Collections.Generic;
Using System.Text;
Namespace Exercise_3
{
public class Fact
{
static int f;
public static int factorial(int and)
{
f = and;
int I;
for (I = and - 1; I >= 1; I--)
{
f = f * I;
}
return f;
}
}
class TestFactorial
{
static void Main(string[] args)
{
int I;
for(I=1;I<=2;I++)
{
Console.Write("Enter the number: ");
int num = Convert.ToInt16(Console.ReadLine());
Fact.Factorial(num);
}
Console.ReadLine();
}
}
}
-question by zeta
Similar Topics:
Programming With Coffee
What Shall I Learn First In Program...
How To Learn A Programming Language
Want To Make Games Simply And Effectively? I've found something that you may like.. (9)
|
(15) Rpg Maker Series Details about the rpgmaker series for pc
|
HOME 





RunUO unpack and run tutorial
Iris2 2008 - Ultima Online - 3D-Client
How to play: Texas Holdem Poker

