1. Список говнокодов пользователя Masha-Rostova

    Всего: 5

  2. Python / Говнокод #23121

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    primary_list = tuple([line.strip() for line in open('file1.txt', 'r')])
    secondary_list = tuple([line.strip() for line in open('file2.txt', 'r')])
    f = open('test.txt', 'w')
    
    users_unique = []
    
    def isUnique(value):
      if value not in users_unique:
        users_unique.append(value)
        return True
      else:
        return False
    
    def common():
      for item in primary_list:
        if item is None:
          continue
        elif item in secondary_list and isUnique(item):
          f.write(str(item)+'\r\n')
      print 'Complete'

    Masha-Rostova, 07 Июня 2017

    Комментарии (5)
  3. Java / Говнокод #23120

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    public class Main
    {
    	public static void main(String[] args)
    	{
    		Integer a = 5;
    		int b = 2;
    		for(;b<20 && a<20;b++,a++)
    		{
    			if (a.compareTo(b) == 0)
    			{
    				System.out.println(a + " равно " + b);
    			}
    			else if(a.compareTo(b) == -1)
    				System.out.println(a + " меньше " +b);
    			else if(a.compareTo(b) == 1)
    				System.out.println(a + " больше " + b);
    		}
    	}
    }

    Хакерско-нубокодинг

    Masha-Rostova, 07 Июня 2017

    Комментарии (0)
  4. Java / Говнокод #23115

    0

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    import java.util.*;
    import java.net.*;
    import java.io.*;
    
    public class Main
    {
    	public static void main(String[] args) throws MalformedURLException, IOException
    	{
    		URL url = new URL("http://pro-java.ru");
    		URLConnection connect = url.openConnection();
    		
    	    long d = connect.getLastModified();
    		if(d == 0)
    			System.out.println("Сведения о дате последней модификации отсутствуют.");
    		else
    		System.out.println("Дата последней модификации: " + new Date(d));
    		
    		System.out.println("=== Содержимое ===");
    		InputStream input = connect.getInputStream();
    		int c, i=0;
    		char[] arr = new char[70000];
    		while(((c = input.read()) != -1)) {
    			//System.out.print((char) c);
    			i++;
    			arr[i] = (char)c;
    		}
    		System.out.println(i);
    		
    		String text = "";
    		String s = "";
    		for(int b=0;b<i;b++)
    		{
    			s = String.valueOf(arr[b]);
    			text = text+s;
    		}
    		System.out.println(text.length);
    		
    	}
    }

    Этот код так и не смог показать мне свой результат

    Masha-Rostova, 06 Июня 2017

    Комментарии (0)
  5. Си / Говнокод #23108

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    #include <stdio.h>
    
    int main(int argc, char *argv[])
    {
    	int num=0;
    	for(;num<99999999;++num)
    	{
    		if(num<10)
    		    fprintf(stdout, "0000000%d\n", num);
    		else if(num<100)
    		    fprintf(stdout,"000000%d\n", num);
    		else if(num<1000)
    		    fprintf(stdout, "00000%d\n", num);
    		else if(num<10000)
    		    fprintf(stdout, "0000%d\n", num);
    		else if(num<100000)
    		    fprintf(stdout, "000%d\n", num);
    		else if(num<1000000)
    		    fprintf(stdout, "00%d\n", num);
    		else if(num<10000000)
    		    fprintf(stdout, "0%d\n", num);
    	}
    }

    Генератор всех возможных пинов wps:D

    Masha-Rostova, 06 Июня 2017

    Комментарии (11)
  6. Java / Говнокод #23107

    −1

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    import java.util.*;
    
    public class Main
    {
    	public static void main(String[] args)
    	{
    		for (int c=0;c<15;++c)
    		{
    			System.out.println(rnd(Math.random()));
    		}
    	}
    	
    		static long rnd(double num)
    		{
    			String S="";
    			double b=num;
    			S=S+b;
    			StringBuffer s = new StringBuffer(S);
    			s.delete(0,2);
    			S="";
    			S=S+s;
    			long i;
    			i = Long.parseLong(S);
    			return i;
    		}
    }

    Рандомная генерация больших чисел

    Masha-Rostova, 06 Июня 2017

    Комментарии (0)