Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace Nums1To10
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine(1);
- Console.WriteLine(2);
- Console.WriteLine(3);
- Console.WriteLine(4);
- Console.WriteLine(5);
- Console.WriteLine(6);
- Console.WriteLine(7);
- Console.WriteLine(8);
- Console.WriteLine(9);
- Console.WriteLine(10);
- }
- }
- }
- ИЛИ:
- namespace Nums1To10
- {
- class Program
- {
- static void Main(string[] args)
- {
- for (int i = 1; i < 11; i++)
- {
- Console.WriteLine(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement