主頁 > 知識庫 > perl寫的一個隨機編故事的程序(rand隨機函數(shù))

perl寫的一個隨機編故事的程序(rand隨機函數(shù))

熱門標簽:外呼電信系統(tǒng) 上海企業(yè)外呼系統(tǒng) 河南虛擬外呼系統(tǒng)公司 電話機器人哪里有賣 智能機器人電銷神器 惠州龍門400電話要怎么申請 萬利達百貨商場地圖標注 熱門電銷機器人 okcc外呼系統(tǒng)怎么調(diào)速度
復制代碼 代碼如下:

#!/bin/perl
use strict; 
use warnings; 

#定義變量 
my $count; 
my $input; 
my $number; 
my $sentence; 
my $story; 

#定義四個數(shù)組 
#定義了人物數(shù)組 
my @nouns= 

   'Dad', 
   'TV', 
   'Mom', 
   'Groucho', 
   'Rebecca', 
   'Harpo', 
   'Robin Hood', 
   'Joe and Moe', 
); 

#定義了動作數(shù)組 
my @verbs= 

   'ran to', 
   'giggled with', 
   'put hot sauce into the orange juice of', 
   'exploded', 
   'dissolved', 
   'dissolved', 
   'sang stupid songs with', 
   'jumped with', 
 ); 

 #定義了地點數(shù)組 
 my @prepositions= 
 ( 
     'at the store', 
     'over the rainbow', 
     'at the beach', 
     'before dinner', 
     'in New York City', 
     'in a dream', 
     'around the world', 
 ); 

 do  
 { 
    #每次運行以前,清空$story的內(nèi)容 
    $story=''; 
    #以下是隨機組合生成故事 
    for ($count =0;$count6;$count++) 
    { 
       #我們劃分一下結(jié)構(gòu),scalar @nouns 是獲取@nouns數(shù)組元素的個數(shù),然后用rand總這幾個數(shù)中隨機生成幾個,最后int是將得到的數(shù)取整 
       $sentence =$nouns[int(rand(scalar @nouns))] 
       ." " 
       .$verbs[int(rand(scalar @verbs))] 
       ." " 
       .$nouns[int(rand(scalar @nouns))] 
       ." " 
       .$prepositions[int(rand(scalar @prepositions))] 
       .'.'; 
       $story .=$sentence; 
   } 
   print "\n",$story,"\n"; 
   print "\nType \"quit\"to quit, or press Enter to continue:"; 
   $input=STDIN>; 

#這里是利用正則表達式來匹配首字符是q的字符串,如果有,那么就退出,/^是匹配起始位置,/i是不區(qū)分大小寫 
until ($input=~/^\s*q/i); 
exit;
您可能感興趣的文章:
  • sql server中隨機函數(shù)NewID()和Rand()
  • python中隨機函數(shù)random用法實例
  • php中隨機函數(shù)mt_rand()與rand()性能對比分析
  • Oracle隨機函數(shù)之dbms_random使用詳解
  • php數(shù)組函數(shù)序列 之shuffle()和array_rand() 隨機函數(shù)使用介紹
  • 如何產(chǎn)生真正的隨機函數(shù)?
  • 如何利用當前時間生成隨機函數(shù)?
  • 詳解C語言中rand函數(shù)的使用

標簽:綿陽 淮安 合肥 綏化 百色 秦皇島 周口 周口

巨人網(wǎng)絡通訊聲明:本文標題《perl寫的一個隨機編故事的程序(rand隨機函數(shù))》,本文關鍵詞  perl,寫的,一個,隨機,編,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《perl寫的一個隨機編故事的程序(rand隨機函數(shù))》相關的同類信息!
  • 本頁收集關于perl寫的一個隨機編故事的程序(rand隨機函數(shù))的相關信息資訊供網(wǎng)民參考!
  • 推薦文章