נשלח בתאריך: 18 September 2007 בשעה 12:25 | | IP רשוּם
|
|
|
|
אוקי זה הקוד שלי:
קוד:
using System;
using System.Collections.Generic;
using System.Text;
class Category
{
static void Main(string[] args)
{
int cat;
Console.WriteLine("Enter the number of ome of the categories below");
Console.WriteLine("");
Console.WriteLine("");
Console.WriteLine("");
cat = int.Parse(Console.ReadLine());
Topic;
}
}
class Topic
{
static void Main(string[] args)
{
int top;
if (cat = 1)
{
Console.WriteLine("Enter the number of one of the topics below");
Console.WriteLine("");
}
top = int.Parse(Console.ReadLine());
Topic2;
}
}
class Topic2
{
static void Main(string[] args)
{
int top2;
if (top = 1)
{
Console.WriteLine("Enter");
Console.WriteLine("bla");
}
}
}
|
|
|
עכשיו כשאני מריץ את התוכנית הוא מסמן לי את שני הStatic Main מה עשיתי לא נכון?
|