1、輸入三個實數,按從大到小的順序輸出
#include
using
namespace std;
intmain()
else
if(num3>max)
else
if(num3else
return0;
}
2、採用海**式,求三角形的面積,三角形的三個邊從鍵盤輸入。
#include
#include
using
namespace std;
intmain()
3、列印出所有的「水仙花數」,所謂「水仙花數」是指乙個三位數,其各位數字的立方和等於該數本身。
#include
using
namespace std;
intmain()
}}}return0;
}
4、從鍵盤輸入乙個數 n,計算 1+2+3+……+n 的值;要求能一直輸入一直計算,直到輸入乙個負數停止。
#include
using
namespace std;
intmain()
while
(n>0)
; cout<}while(1
);return0;
}
5、輸出以下 4*5 的矩陣。
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
#include
using
namespace std;
intmain()
cout/每執行一次 內迴圈換行
}}
6、從鍵盤隨機輸入 10 個數,統計其中正數的個數及其平均數
#include
using
namespace std;
intmain()
}while
(x<10)
; cout<<
"正數的個數為"
"所有正數的平均數為"
<}
7、已知半徑 radius,採用迴圈結構計算半徑 1~10 區間內圓的面積area。且當 area>100 時結束程式執行。
#include
using
namespace std;
intmain()
}
8、從鍵盤輸入乙個數 m,判斷這個數是否為素數
#include
#include
using
namespace std;
intmain()
break;}
if(c)
cout <"是素數"
<< endl;
return0;
}
9、求 100-200 之間的全部素數並按照每 5 個一行進行輸出
#include
#include
using
namespace std;
intmain()
}if(n)}
}
10、從鍵盤輸入乙個正整數 n,輸出乙個星型圖案,其中第 n 行的*號個數為 2n-1 個。
#include
using
namespace std;
intmain()
//先輸出前n行
for(i=n-
1;i>=
1;i--
)return0;
}
第一次上機作業
struct record stu n 定義結構體陣列 int k 1,n,m n代表當前記錄的學生人數 void readfile 讀入資料 void seek 查詢 void modify 修改資料 void insert 插入資料 void del 刪除資料 void display 顯示資訊...
第一次上機作業
第一道題 首先輸入三個數字,然後用if語句,把所有的情況列出來並輸出。include using namespace std intmain else if a c else if a b else if b c else return0 第二道題 根據海 式,要用到開平方根,把值定義好,按順序輸出...
第一次上機作業
1 海 式求面積 include include using namespace std intmain 2 輸出矩陣 cpp include using namespace std intmain return0 3 判斷素數 include include using namespace std...