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
Cleighton
NA
1
5.7k
Creating a consol app drawing shapes with asterisks.
Sep 4 2013 2:48 PM
Hello, this is my first post here, and won't be my last. I want to really learn this language and not say "give me all the answers so I can get an easy A" I have a friend in C# that tell me to "come up with a string or group of strings defining each shape, and display them using the console write methods (obviously that's easy) what I have so far roughly. The shapes are a diamond, square, oval, and arrow.
using System;
public class Shapes
{
static void Main(string[] args)
{
/* I'm assuming here is where you either place the code for strings or declare the strings and values.
*/
Console.Write("*what the strings output is here or the display of the string(s)*");
}
}
(yes I know the code is messy but this an extremely rough copy)
Reply
Answers (
1
)
Do i need to learn C and C++ before learning C# and .Net?
how do i show 2 numbers in an array?