School's out, time to program!
Name:
Anonymous
2013-10-10 14:53
It's 2:45 PM, BITCHEs! East coast is best coast! My mother checked me out early today.
inb4 underage b&, I'm a senior in high school.
I'm going to finish writing my bubblesort implementation in piyton.
Name:
Anonymous
2013-10-19 9:13
Here is one practice :
using System;
using System.Collections.Generic;
using System.Text;
namespace ArrayExplained
{
class Program
{
static void Main(string[] args)
{
int[] rooms ={ 0, 0, 0, 0, 0 };
Console.Write("Enter 1st room:");
rooms[0] = int.Parse(Console.ReadLine());
Console.Write("Enter 1st room:");
rooms[1] = int.Parse(Console.ReadLine());
Console.Write("Enter 1st room:");
rooms[2] = int.Parse(Console.ReadLine());
Console.Write("Enter 1st room:");
rooms[3] = int.Parse(Console.ReadLine());
Console.Write("Enter 1st room:");
rooms[4] = int.Parse(Console.ReadLine());
}
}
}
Newer Posts