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
Tommy Profeta
NA
10
2.9k
What will this do?
Oct 16 2014 3:43 PM
1 // Exercise 6.10 Solution: Printing.cs
2 using System;
3
4 public class Printing
5 {
6 public static void Main( string[] args )
7 {
8 for ( int i = 1; i <= 10; ++i )
9 {
10 for ( int j = 1; j <= 5; ++j )
11 Console.Write( '@' );
12
13 Console.WriteLine();
14 } // end outer for
15 } // end Main
16 } // end class Printing
Reply
Answers (
3
)
The 2nd Drop Down List is populated based on the values
use of constructor in abstract class