第一道題:首先輸入三個數字,然後用if語句,把所有的情況列出來並輸出。
#include
using
namespace std;
intmain()
else
if(a > c)
else}if
(a < b)
else
if(b > c)
else
}return0;
}
第二道題:根據海**式,要用到開平方根,把值定義好,按順序輸出
#include
using
namespace std;
#include
"math.h";
#include
"cmath";
intmain()
else
return0;
}
第三道題:水仙花。
關鍵在於知道如何表達個位數,十位數和百位數。
#include
using
namespace std;
intmain()
else
}while
(num <
1000);
return0;
}
第四道題:do while 迴圈,「1」是真,可以無限迴圈。嵌入if,直到break 可以退出。
#include
using
namespace std;
intmain()
cout << sum << endl;
}else
}while(1
);return0;
}
第五道題:\t可以把數對齊。弄清楚每一列是哪些數,每一行是哪些數,數的關係
#include
using
namespace std;
intmain()
i++; cout << endl;
}return0;
}
第六道題:窮舉法。
#include
using
namespace std;
intmain()
第七道題:定義pi,
#include
using
namespace std;
intmain()
return0;
}
第八題:
#include
#include
using
namespace std;
intmain()
}if(flag ==1)
else cout <<
"是質數"
;return0;
}
第九題:
#include
#include
using
namespace std;
intmain()
if(flag ==1)
}}cout << endl;
return0;
}
第十題:
#include
using
namespace std;
intmain()
for(
int m = n ; m >=1;
--m)
return0;
}
第一次上機作業
struct record stu n 定義結構體陣列 int k 1,n,m n代表當前記錄的學生人數 void readfile 讀入資料 void seek 查詢 void modify 修改資料 void insert 插入資料 void del 刪除資料 void display 顯示資訊...
第一次上機作業
1 輸入三個實數,按從大到小的順序輸出 include using namespace std intmain else if num3 max else if num3else return0 2 採用海 式,求三角形的面積,三角形的三個邊從鍵盤輸入。include include using n...
第一次上機作業
1 海 式求面積 include include using namespace std intmain 2 輸出矩陣 cpp include using namespace std intmain return0 3 判斷素數 include include using namespace std...