補交作業 耿奧

2022-08-19 16:54:08 字數 2437 閱讀 9453

學  號

姓  名

耿奧專業、班

計科16-2班

學    期

2016-2017 第1學期

指導教師

黃俊蓮 吳喆

實驗地點

c區機房

機 器 號

上課時間

2023年9 月22 日   2 周 周四 1-4 節

截止時間

2023年9 月28 日   3 周 週三 12:00

實驗任務清單

實驗2-1 輸入3個數,並按由大到小的順序輸出。

實驗2-2 從鍵盤上輸入x的值,並根據計算輸出y的值

實驗2-3從鍵盤上輸入乙個字母,如果是小寫字母,將其轉換成大寫字母並輸出。

實驗2-4從鍵盤上輸入x的值,並根據計算輸出y的值

實驗2-5 給出乙個百分制的成績,要求出成績等級』a』、』b』、』c』、』d』、』e』,其中90分以上輸出』a』,80~89輸出』b』,70~79輸出』c』,60~69輸出』d』,60分以下輸出』e』。

教師評語

成績

編寫乙個c程式,輸入3個數,並按由大到小的順序輸出。

原始碼:#include

int main(void)

if (b>c)

else if(c>a)

else

return 0;

}使用資料函式需要#include

開方函式:sqrt(x)

絕對值函式:fabs(x)

#include

int main(void)

double x,y;

printf("輸出x:");

scanf("%d",&x);

if(x>4){

y=sqrt(x-4);

printf("%d\n",y);

if else (x<-5){

y=fabs(x);

printf("%d\n",y);

else{

y=x+3;

printf("%d\n",y);

輸入字元給變數c

char c;

方法一:c = getchar();

方法二:scanf("%c",&c);

輸出字元變數c

方法一:putchar(c);

方法二:printf("%c",c);

程式原始碼

#include

int main(){

char c;

printf("請輸入乙個字母:");

scanf("%c",&c);

printf("%c\n",c-32);

#include

int main(){

printf("請輸入乙個字母:");

char c;

c=getchar();

if(c<='z' && c>='a')

c=c-32;

putchar(c);

#include

#include

int main(){

int x,y;

printf("輸入x");

scanf("%d",&x);

if(x<1){

y=x;

printf("%d\n",y);

else if(1<=x && x<10){

y=(2*x-1);

printf("%d\n",y);

else{

y=(3*x-11);

printf("%d\n",y);

return 0;

本實驗要求同學們採用兩種方法來完成:

方法一:使用if語句完成

方法二:使用switch語句完成。

#include

int main(void){

int x;

printf ("輸入成績:");

scanf("%d",&x);

if(x>=90)

printf("a");

else if(x>=80 && x<=89)

printf("b");

else if(x>=70 && x<=79)

printf("c");

else if(x>=60 && x<=69)

printf("d");

else

printf("e");\

return 0;

實驗心得   

由於前幾次課上沒有認真聽講, 作業也沒有按時上交 ,所以寫起來感覺有些吃力。每次寫完,總是忘加return 0,還是有用中文符號這種現象,我得在最近的時間裡努力,把前面都補上來,追上大家的腳步,以後按時交作業。p.s.我還不會抓圖。。。。

Hadoop綜合大作業 補交作業

補交作業的帖子 1 啟動hadoop 2 hdfs上建立資料夾 3 上傳檔案至hdfs 4 啟動hive,建立原始文件表 create table news line string 沒有截圖。5 匯入檔案內容到表docs並檢視 select from news 太長了不截了 截最後面的 6 用hql...

補交作業,黃家帥

字母個數 d n zm printf 空格個數 d n kg printf 數字個數 d n sz printf 其他個數 d n 最大公約數為 d i t m n i printf 最小公倍數為 d 實驗心得 對於前兩個實驗的while,do while,for的三種方法理解之後也就沒那麼難,之前...

PairWork2必應詞典測試補交作業 孫勝 劉明

結對程式設計作業人員 10061141 劉明 10061169 孫勝 第一部分 bug1 生詞本功能存在bug 使用步驟 1 單擊擴充套件應用 2 選擇必應生詞本 3 單詞新增 bug內容 新增必應單詞庫中不存在的單詞時,無法儲存音標。因為想不到某些生僻單詞,只能用abcd用以說明 bug截圖 bu...