-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
28 lines (28 loc) · 714 Bytes
/
Copy pathProgram.cs
File metadata and controls
28 lines (28 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
// M.A. Nunes
namespace GotoPower
{
class Program
{
static void Main(string[] args)
{
Console.Write("The Base: ");
int iBase = int.Parse(Console.ReadLine());
Console.Write("The Power: ");
int iPower = int.Parse(Console.ReadLine());
Console.Write(GoPowerTo(iBase,iPower));
}
static UInt32 GoPowerTo(in int Base, in int Power)
{
Int32 x = 1,iItor = 0;
goto LoopEntry;
LoopBegin:
iItor++;
x *= Base;
LoopEntry:
if (iItor <Power)
goto LoopBegin;
return (UInt32)x;
}
}
}