More help with assignment

  • From: "Chris Hallsworth" <christopherh40@xxxxxxxxxxxxxx>
  • To: <programmingblind@xxxxxxxxxxxxx>
  • Date: Tue, 4 Aug 2009 15:48:09 +0100

Hello all,
I'm still having problems with my assignment in Visual C# 2008 Express
Edition. First of all, please look at the code below and see why, when I run
it, nothing but "Press any key to continue" is displayed. Also, When I debug
the program, I'm now told that the version of DockingPort.exe that should be
in the debug folder is missing. Please advise on what I should do next. Now
here is the code:

-- start of code--
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DockingPort
{
   class Program
   {
       static void Main(string[] args)
       {
       char CostAgent(int){
Console.WriteLine("enter the vessel type and press enter");
       Char VesselType=Console.ReadLine();
If(VesselType=="o"){
   Return 1;}
       else If(VesselType=="c"){
           Return 4;}
       else If(VesselType=="r"){
           Return 2;}
       else If(VesselType=="b"){
           Return 1;}
       else If(VesselType=="p"){
           Return 2;}
       else If(VesselType=="f"){
           Return 1;}
           else{
           Console.WriteLine("Invalid vessel type, please try again");
       Console.ReadLine();
           }
       }
   char FreightAgent(int){
       Console.WriteLine("enter the vessel type and press enter");
       Char VesselType=Console.ReadLine();
       If(VesselType=="o"){
           Return 1;}
       else If(VesselType=="c"){
           Return 6;}
       else If(VesselType=="r"|"b"){
           Return 2;}
       else If(VesselType=="p"|"f"|){
           Return 1;}
              else{
           Console.WriteLine("Invalid vessel type, please try again");
   Console.ReadLine();}
   }
   char MarineSafetyInspector(int){
       Console.WriteLine("enter the vessel type and press enter");
       Char VesselType=Console.ReadLine();
       If(VesselType=="o"){
           Return 3;}
       else If(VesselType=="c"){
           Return 2;}
       Else If(VesselType=="r"|"b"){
           Return 1;}
       else If(VesselType=="p"){
           Return 2;}
       else If(VesselType=="f"){
           Return 1;}
       else{
           Console.WriteLine("Invalid vessel type, please try again");
       Console.ReadLine();}
   }
   Void StaffAttendance(){
Console.WriteLine("Enter the vessel type and press enter");
               Char VesselType=Console.ReadLine();
       If(VesselType=="o"|"c"|"r"|"b"|"p"|"f"){
           Console.WriteLine("Cost agents ="+CostAgent());
           Console.WriteLine("Freight Agents="+FreightAgent());
           Console.WriteLine("Marine Safety
Inspectors="+MarineSafetyInspector());}
       else{
                   Console.WriteLine("Invalid vessel type, please try
again");
       Console.ReadLine();}
   }
       }
   }
}
--End of code--

Thanks for the help in this matter.

--
Chris Hallsworth
E-mail: christopherh40@xxxxxxxxxxxxxx
MSN: ch9675@xxxxxxxxxxx
Skype: chrishallsworth7266
Klango: chrishallsworth
__________
View the list's information and change your settings at //www.freelists.org/list/programmingblind

Other related posts: