Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ConsoleApplication9
- {
- class Program
- {
- static void Main(string[] args)
- {
- int a = 12;
- for (int i = 0; i<=12; i++)
- {
- if (i % 2 == 1)
- {
- Console.WriteLine(i);
- }
- }
- Console.WriteLine("molq vuvedete chislo");
- int n = int.Parse(Console.ReadLine());
- printOdd(n);
- string[] names = {"Lili","Sonq","Pepi"};
- for (int j = 0; j < names.Length; j++ )
- {
- Console.WriteLine(names[j]);
- }
- printArray(names);
- string[] input;
- Console.WriteLine("Rasmer");
- int size = int.Parse(Console.ReadLine());
- input = new string[size];
- for (int i = 0; i < input.Length; i++) {
- Console.WriteLine("vuvedete element {0}:", i);
- input[i] = Console.ReadLine();
- }
- }
- static void printOdd(int n)
- {
- for (int i = 0; i<=n; i++)
- {
- if (i % 2 == 1)
- {
- Console.WriteLine(i);
- }
- }
- }
- static void printŠrray(string[] names)
- {
- for (int j = 0; j < names.Length; j++ )
- {
- Console.WriteLine(names[j]);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement