Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~353 People Reached
Favorite Forums
Member Avatar for Jasdeep11

using System; namespace studentObj class Student { private int id (); private string name (); private char grade (); public int ID { get {return id;} } public string Name { get {return name;} set {name = value;} } public char Grade { get {return grade;} } public Student(int ID, …

Member Avatar for overwraith
0
234
Member Avatar for Jasdeep11

i was wondering how i would get the total for the numbers of 5-25 and print it out; so it would print out 315; im blanking out for (int a = 5; a <= 25; a++) { int total = 0; total= a + a; Console.WriteLine("total= " + a); }

Member Avatar for ddanbe
0
119