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
pad pad
NA
20
17.4k
syntax errors and logical errors
Oct 9 2014 2:29 AM
// Uses DisplayWebAddress method three times
using System;
class DebugSeven1
{
static void Main()
{
DisplayWebAddress;
Console.WriteLine("Shop at Shopper's World");
DisplayWebAddress;
Console.WriteLine("The best bargains from around the world");
DisplayWebAddress;
}
private void DisplayWebAddress()
{
Console.WriteLine("------------------------------");
Console.WriteLine("Visit us on the web at:");
Console.WriteLine("
www.shoppersworldbargains.com
");
Console.WriteLine("******************************");
}
}
please help me in correcting syntax and logical errors.
Reply
Answers (
2
)
Multiplication
not able to execute