zoukankan      html  css  js  c++  java
  • 生成随机数

    代码:

    #import <Foundation/Foundation.h>
    
    int main (int argc, const char * argv[])
    {
    
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    
        //Objective-C 没有提供相关的函数生成随机数,不过C供了rand(), srand(), random(), srandom(), arc4random()几个函数。
        //其中arc4random()不用seed
        
        //生成0到100的随机数
        int x = arc4random() % 100;
        NSLog(@"0~100 = %@",[NSNumber numberWithInt:x]);
        
        //生成500到1000的随机数
        int y = (arc4random() % 501) + 500;
        NSLog(@"500~1000 = %@",[NSNumber numberWithInt:y]);
        
        [pool drain];
        return 0;
    }
    

    结果:

    [Switching to process 1637 thread 0x0]
    2011-05-10 09:54:03.008 demo02[1637:903] 0~100 = 6
    2011-05-10 09:54:03.011 demo02[1637:903] 500~1000 = 837
    

  • 相关阅读:
    SQL结构化查询语言
    数据库主外键
    SQL数据库数据类型详解
    注释和特殊符号
    文本装饰
    列表样式
    网页背景
    SQL数据库数据类型详解
    数据库主外键
    Update 语句
  • 原文地址:https://www.cnblogs.com/chenjunbiao/p/2041840.html
Copyright © 2011-2022 走看看