fama.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. public class myApp
  3. {
  4. static void Main()
  5. {
  6. int a,b,c,d;
  7. for(a = 1;a < 40;a++)
  8. for(b = 1;b < 40;b++)
  9. for(c = 1;c < 40;c++)
  10. for(d = 1;d < 40;d++)
  11. {
  12. if(a + b + c + d == 40)
  13. {
  14. if(Check(a,b,c,d))
  15. {
  16. Console.WriteLine("{0}t{1}t{2}t{3}",a,b,c,d);
  17. }
  18. }
  19. }
  20. Console.WriteLine("DONE");
  21. Console.ReadLine();
  22. }
  23. static bool Check(int a,int b,int c,int d)
  24. {
  25. int i,j,k,l;
  26. i = j = k = l = 0;
  27. for(int r = 1;r <= 40;r++)
  28. {
  29. for(i = -1;i <= 1;i++)
  30. for(j = -1;j <= 1;j++)
  31. for(k = -1;k <= 1;k++)
  32. for(l = -1;l <= 1;l++)
  33. {
  34. //如果可以称r重量 则直接跳出去称r+1的重量
  35. if(a*i + b*j + c*k + d*l == r)
  36. goto NextLoop;
  37. }
  38. //如果不能称r重量,则说明失败 返回假
  39. return false;
  40. NextLoop:
  41. continue;
  42. }
  43. return true;
  44. }
  45. }