|
||||||
| C# Programming C# (pronounced C-sharp) is a new object oriented language from Microsoft and is derived from C and C++. It also borrows a lot of concepts from Java too including garbage collection. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
have some question can somebody help me in doing this for 8086 simulator..???
Code:
a ab abc abcd abcde abcdef abcdefg abcdefgh abcdefghi abcdefghij abcdefghijk abcdefghijkl abcdefghijklm abcdefghijklmn abcdefghijklmno abcdefghijklmnop abcdefghijklmnopq abcdefghijklmnopqr abcdefghijklmnopqrs abcdefghijklmnopqrst abcdefghijklmnopqrstu abcdefghijklmnopqrstuv abcdefghijklmnopqrstuvw abcdefghijklmnopqrstuvwx abcdefghijklmnopqrstuvwxy abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxy abcdefghijklmnopqrstuvwx abcdefghijklmnopqrstuvw abcdefghijklmnopqrstuv abcdefghijklmnopqrstu abcdefghijklmnopqrst abcdefghijklmnopqrs abcdefghijklmnopqr abcdefghijklmnopq abcdefghijklmnop abcdefghijklmno abcdefghijklmn abcdefghijklm abcdefghijkl abcdefghijk abcdefghij abcdefghi abcdefgh abcdefg abcdef abcde abcd abc ab a |
| Sponsored Links |
|
|
|
|||||
|
Well it's very simple, I'm new to C# but here is the solution
![]() Code:
string alphabet = "abcdefghijklmnopqrstuvwxyz";
int counter = 1;
for(int i=0;i<=25;i++)
{
Console.WriteLine(alphabet.Substring(0,counter));
counter++;
}
counter=25;
for(int i=0;i<=25;i++)
{
Console.WriteLine(alphabet.Substring(0,counter));
counter--;
}
Console.ReadLine();
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
|
|||||
|
See the other thread. Uhm well that's nothing... the code I posted is very very basic.. basically nothing in confront the other things I know how to do in C# (again see the other thread) but I'm still a newbie IMO.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
|
|||||
|
IMO = In My Opinion
Thanks ![]()
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
|
|||||
|
LoL, you didn't know IMO? hehe that's funny.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
|
|||||
|
Uhm... what you mean? The people that manage this course I suppose.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() Business Directory | Technology Blog | Windows Help |
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with 8086 Assembly | SCR | General Programming | 1 | 03-12-2008 10:09 AM |
| Clear Window in 8086 Assembler, no Ints | omniscian | General Programming | 1 | 02-25-2008 09:58 PM |
| 8086 Assembler HELP | BamaBUB1983 | General Programming | 3 | 12-12-2007 09:11 PM |
| How to write a Simulator for SML code | debug | C and C++ | 3 | 10-30-2007 11:14 AM |