024.If Correct 更正错误

---------------   main.m   ---------------
#import  <Foundation/Foundation.h>

int  main()  // 正确写法一
{
   
  int  age =  45 ;
   
  if  (age >  60 )
    {
        NSLog(
@" 老年人 " );
    }
   
  else  if  (age >  40 )
    {
        NSLog(
@" 中年人 " );
    }
   
  else  if  (age >  20 )
    {
        NSLog(
@" 青年人 " );
    }
}
---------------   main.m   ---------------
#import  <Foundation/Foundation.h>

int  main()  // 正确写法二
{
   
  int  age =  45 ;
   
  if  (age >  60 )
    {
        NSLog(
@" 老年人 " );
    }
   
  else  if  (age >  40  && !(age > 60 ))
    {
        NSLog(
@" 中年人 " );
    }
   
  else  if  (age >  20  && !(age >  60 ) && !(age >  40  && !(age > 60 )))
    {
        NSLog(
@" 青年人 " );
    }
}

一、编写本节代码的具体步骤:
1.参照003节的代码编写步骤。

二、本节代码涉及到的知识点:
1.使用 if else 语句的时候,我们应该优先处理范围更小的情况。
  在上面的示例代码中,age>60 比 age>20 的范围更小,应优先处理。
2.在第二份代码中,我们把else的隐含条件写出来,更容易理解其中的逻辑。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
请翻译:202.192.1.5 is making SMTP connections which indicate that it is misconfigured. Some elements of your existing configuration create message characteristics identical to previously identified spam messages. Please align the mail erver's HELO/EHLO 'icoremail.net' with proper DNS (forward and reverse) values for a mail server. Here is an example: Correct HELO/DNS/rDNS alignment for domain example.com: - Mail server HELO: mail.example.com - Mail server IP: 192.0.2.12 - Forward DNS: mail.example.com -> 192.0.2.12 - Reverse DNS: 192.0.2.12 -> mail.example.com Correcting an invalid HELO or a HELO/forward DNS lookup mismatch will stop the IP from being listed again. Points to consider: * Alignment: it is strongly recommended that the forward DNS lookup (domain name to IP address) and rDNS (IP to domain) of your IP should match the HELO value set in your server, if possible * The IP and the HELO value should both have forward and rDNS, and should resolve in public DNS * Ensure that the domain used in HELO actually exists! Additional points: * According to RFC, the HELO must be a fully qualified domain name (FQDN): "hostname.example.com" is an FQDN and "example.com" is not an FQDN. * The domain used should belong to your organisation. * HELO is commonly a server setting, not DNS. Contact your hosting provider for assistance if needed. You can test a server's HELO configuration by sending an email from it to helocheck@abuseat.org. A bounce that contains the required information will be returned immediately. It will look like an error, it is not. Please examine the contents of this email. If all settings are correct, you have a different problem, probably malware/spambot. Again, the HELO we are seeing is 'icoremail.net'. The last detection was at 2023-05-27 13:35:00 (UTC). For information on misconfigured or hacked SMTP servers and networks, please see this FAQ: https://www.spamhaus.org/faq/section/Hacked...%20Here's%20help#539 CSS listings expire a few days after last detection. You can always open a ticket (or update an existing one) to inform us when and how the situation was been secured.
05-31
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值