Compare commits
No commits in common. "cd1458b139992e08a28ee85a9f1322dc91790900" and "73d6593cd1503e262a70bde9a2b94ffe6c130e4c" have entirely different histories.
cd1458b139
...
73d6593cd1
4 changed files with 2 additions and 74 deletions
38
.gitignore
vendored
38
.gitignore
vendored
|
@ -1,38 +0,0 @@
|
||||||
*.swp
|
|
||||||
*.*~
|
|
||||||
project.lock.json
|
|
||||||
.DS_Store
|
|
||||||
*.pyc
|
|
||||||
nupkg/
|
|
||||||
|
|
||||||
# Visual Studio Code
|
|
||||||
.vscode
|
|
||||||
|
|
||||||
# Rider
|
|
||||||
.idea
|
|
||||||
|
|
||||||
# User-specific files
|
|
||||||
*.suo
|
|
||||||
*.user
|
|
||||||
*.userosscache
|
|
||||||
*.sln.docstates
|
|
||||||
|
|
||||||
# Build results
|
|
||||||
[Dd]ebug/
|
|
||||||
[Dd]ebugPublic/
|
|
||||||
[Rr]elease/
|
|
||||||
[Rr]eleases/
|
|
||||||
x64/
|
|
||||||
x86/
|
|
||||||
build/
|
|
||||||
bld/
|
|
||||||
[Bb]in/
|
|
||||||
[Oo]bj/
|
|
||||||
[Oo]ut/
|
|
||||||
msbuild.log
|
|
||||||
msbuild.err
|
|
||||||
msbuild.wrn
|
|
||||||
|
|
||||||
# Visual Studio 2015
|
|
||||||
.vs/
|
|
||||||
|
|
24
Program.cs
24
Program.cs
|
@ -1,24 +0,0 @@
|
||||||
|
|
||||||
int amount;
|
|
||||||
|
|
||||||
ASK_INPUT:
|
|
||||||
Console.WriteLine("Enter how many numbers you want to compute:");
|
|
||||||
string input = Console.ReadLine();
|
|
||||||
|
|
||||||
if(!Int32.TryParse(input, out amount)){
|
|
||||||
Console.WriteLine("Input Wasn't a Number!");
|
|
||||||
goto ASK_INPUT;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Declare Variables used for Calculation
|
|
||||||
System.Numerics.BigInteger themp;
|
|
||||||
System.Numerics.BigInteger a = 1;
|
|
||||||
System.Numerics.BigInteger b = 1;
|
|
||||||
|
|
||||||
for (int i = 1; i < amount + 1; i++)
|
|
||||||
{
|
|
||||||
Console.WriteLine($"{i}: {a}\n");
|
|
||||||
themp = a;
|
|
||||||
a = a + b;
|
|
||||||
b = themp;
|
|
||||||
}
|
|
|
@ -1,10 +1,10 @@
|
||||||
## Tec Stack
|
## Tec Stack
|
||||||
Language: `c#`
|
Language: `lang`
|
||||||
Framework: `none`
|
Framework: `none`
|
||||||
Librarys: `none`
|
Librarys: `none`
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
A Basic CLI Programm printing out the Fibbonachio
|
Basic Template for a Learning Repo
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>net7.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
Loading…
Reference in a new issue