問題及**:
*檔名稱:小學生數學計算出題庫
完成日期:2016.3.19
*問題描述:設計乙個程式,用來實現幫助小學生進行算數練習。
*輸入描述:輸入小學生算出的正確答案
程式輸出:給出小學生做題的對錯,並判斷最對了幾道題和最後得分;
#include #include#includeusing namespace std;
int main()
{ int itrueresult,iinputresult;
int inumber=1,iresultcount;
srand(time(0));
while(inumber<=10)
{int ijudge=rand()%4;
cout<<"第"<>iinputresult;
if(iinputresult==itrueresult)
{cout<<"right"<>iinputresult;
if(iinputresult==itrueresult)
{cout<<"right"<>iinputresult;
if(iinputresult==itrueresult)
{cout<<"right"<>iinputresult;
if(iinputresult==itrueresult)
{cout<<"right"<
第三次上機實踐專案 專案3 猜數字遊戲
問題及 檔名稱 猜數字 完成日期 2016.3.20 問題描述 設計乙個程式,隨機產生1000以內的數字,輸入猜想的數字,判斷是否與隨機數相等 輸入描述 輸入1000以內的數字 程式輸出 給出產生的隨機數與輸入數字的大小關係,並輸出經歷過多少次猜對 include include includeus...
C 第三次上機
題目一 假設有乙個字串strfilename d c 程式設計 實驗3 myfile.txt 使用字串方法,取出路徑中的檔名 myfile.txt 要求至少想出三種方法實現 1 using system using system.collections.generic using system.li...
PTA第三次上機
include include include using namespace std class polygon int perimeter 計算多邊形邊長 void display 輸出多邊形邊數和周長 int reachsidelen int polygon perimeter return ...