传输无法连接到服务器c#

时间:2016-02-03 05:18:48

标签: c# asp.net

我正在使用Smtp客户端,我的电子邮件功能在服务器上传后无法正常工作。一切都在当地工作。以下是我的代码

System.out.println("Thank you! The numbers selected were: ");
Set<Integer> numbers = new HashSet<>();
for(int i = 0; i < times; i++) {
  lotNum = 0;
  for(int j = 0; j < game; j++) {
    do {
      randNum = (new java.util.Random()).nextInt(10);
    } while (numbers.contains(randNum));
    numbers.add(randNum);
    lotNum = (lotNum * 10) + randNum;
    System.out.print(randNum);
    sum += randNum;
  }
  numbers.clear();
  System.out.println();
}

0 个答案:

没有答案