Advertisement
yepp

igen

Apr 22nd, 2015
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.28 KB | None | 0 0
  1. class Program {
  2.  
  3.         static bool[,] table = new bool[50,50];
  4.  
  5.         static void print() {
  6.             for (int i = 0; i < 50; ++i) {
  7.                 for (int j = 0; j < 50; ++j) {
  8.                     Console.Write(table[i, j] ? "." : "X");
  9.                 }
  10.                 Console.Write("\n");
  11.             }
  12.         }
  13.  
  14.         static void Main(string[] args) {
  15.  
  16.             Bitmap img = new Bitmap("rejtveny.bmp");
  17.             for (int i = 0; i < 50; i++) {
  18.                 for (int j = 0; j < 50; j++) {
  19.                     Color pixel = img.GetPixel((int)Math.Round(4.92/2 + j * 4.92), (int)Math.Round(4.92/2 + i * 4.92));
  20.                     if (pixel.R == 255 && pixel.G == 255 && pixel.B == 255) {
  21.                         table[i,j] = true;
  22.                     } else {
  23.                         table[i, j] = false;
  24.                     }
  25.                 }
  26.             }
  27.  
  28.             System.IO.StreamReader file = new System.IO.StreamReader("szamok.txt");
  29.             string line;
  30.             List<int> numbers = new List<int>();
  31.             while ((line = file.ReadLine()) != null) {
  32.                 if (line.Length == 5) {
  33.                     numbers.Add(int.Parse(line));
  34.                 }
  35.             }
  36.             file.Close();
  37.             numbers.Sort();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement