-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
77 lines (53 loc) · 1.86 KB
/
Copy pathProgram.cs
File metadata and controls
77 lines (53 loc) · 1.86 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevLearnCsharp
{
class Program
{
static void Main(string[] args)
{
ListExample s = new ListExample();
Console.ReadLine();
//forloopDemo f = new forloopDemo();
//f.fordemo();
// IntegerStdInPUT p= new IntegerStdInPUT();
// ArrayPluralsight arra = new ArrayPluralsight();
// arra.array();
// GradeBook book = new GradeBook(); // becomes garbage ... afte secong object created
// book.AddGrade(91);
// book.AddGrade(89.5f);
//// book = new GradeBook();
// book.AddGrade(34); // only acccess to second object
// GradeBook book2 = new GradeBook();
// book2.AddGrade(22);
// GradeBook book3 = book;
// book3.AddGrade(11);
/*
Console.WriteLine("my first githb project");
Console.WriteLine("this is second succesfull execution");
Console.WriteLine("this is awesome to use git");
Console.WriteLine("Add user name ");
string name =Console.ReadLine();
Console.WriteLine("user name is {0}", name);
Console.ReadLine();
Console.WriteLine("add no of sleep hours");
int hourofSleep = int.Parse(Console.ReadLine());
if (hourofSleep>8)
{
Console.WriteLine("User has {0} hour of sleep", hourofSleep);
Console.WriteLine("Good sleep bro");
}
else
{
Console.WriteLine("you need more sleep");
}
Console.ReadLine();
goto2 g2 = new goto2();
g2.addition();
*/
}
}
}