2017-08-16 95 views
-10

停止給負分,我知道怎麼這麼笨我問的是我需要一個非常簡單的程序(任何語言)

+3

[爲什麼「有人可以幫助我?」不是一個真正的問題?](http://meta.stackoverflow.com/q/284236) – Filburt

+0

您可以使用電子表格來做到這一點。 – Boann

+0

「無論如何,你們可以幫助我編寫程序或自己編寫程序,因爲我仍然是一個新手,並且有很多問題。」這不是一個代碼寫入服務。但你很幸運!我的簽約率每小時只有50美元 - 我*可以*提供代碼寫作服務......或者,您可以退出[問]並重新編寫問題以符合指導原則,並免費獲得獎勵! –

回答

0
<?php 
//variable to hold the whole results 
$numbers = ""; 
// for loop for the numbers 
for($i=0;$i<100000;$i++){ 
    // I used the . in front of the varaible to accummulate the result in one variable 
    $numbers .= "The Number is: ".(900000+$i)."<br>"; 

} 
    // echo the the value that the variable is holding 
    echo $numbers; 
    // code for text file 
    // fopen is a function for creating a text file in php 
    // specify name of the file. it can bee any name 
    $myfile = fopen("phpnumbers.txt", "a+"); 
    // the variable holding the values 
    $numbers; 
    // write the variable in the text file created 
    fwrite($myfile, $numbers); 
    // close the file when done 
    fclose($myfile); 

    // I hope it helps 
    // But try and learn tutorial online for more understanding 
    // Thank you!!! 

?> 
  • 我評論了我的代碼每個部分

  • 這是簡單

  • 我希望它能幫助

+1

我沒有誤解。由於多種原因,這個問題是脫離主題的,國際海事組織不應該得到回答。它缺乏努力,研究,他們的代碼等等。SO不是代碼編寫服務。我不認爲我低調,但我會檢查。 –

相關問題