TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Jenni Witzel
NA
27
0
I need help with my C# Homework ? I figured out most of it but one section
Oct 23 2008 7:53 PM
using System;
using SC = System.Console;
public class NLastLab8
{ //Main Method
public static void Main()
{
int[] myListArray= new int[12];
myListArray[0] = myListArray[1] = 1;
SC.WriteLine("Lab 8 – Your Name\n");
for (int x = 0; x < 12; ++x)
{
SC.Write("Please enter a value for element {0} -->\t", x);
myListArray[x] = Convert.ToInt32(SC.ReadLine());
}
SC.WriteLine(“\n\nThe values entered were: {0}”, myListArray[0]);
what goes here
SC.WriteLine("\nLab 8 has successfully terminated for Your Name");
Reply
Answers (
3
)
Mouse position
problem retrieving data processed by class library