編寫c程式,從鍵盤上輸入整數,然後輸出數中的最大數

2021-05-10 13:16:48 字數 1630 閱讀 5745

1樓:匿名使用者

#include

int main()

printf("max = %d\n",max);

return 0;}

2樓:黃曉萌的文藝夢

cou<的數多的話,前面的陣列輸入也可以迴圈輸入。

3樓:gta小雞

#include

int main()

用c語言編寫一個程式,從鍵盤輸入5個整數,並將這5個數存入一個長度為5的一維陣列中

4樓:逐夢兮樂

#include

int main()

這是第一個題

#include

void sort(int *a, int n)}}}int main()

這是第二題

記得采納哦!

5樓:匿名使用者

以測試,沒問題,望採納!

#include

void sort(int* a,int n)//********************===選擇排序

怎麼用c語言編寫一個程式,它從鍵盤上輸入5個整數,然後輸出它們的積?

6樓:圖圖她爸爸

printf(「請輸入5個數字:」);、

int i ;

int a[4];

for(i=0;i<5;i++ )

printf("the answer is:");

printf("%d\n",a[0]*a[1]*a[2]*a[3]*a[4]);

7樓:黯然

#include

int main()

printf( "the product of these five numbers is %d \n", product );

return 0;}

8樓:匿名使用者

int a, b, c, d, e;

printf("請輸入五

個數字\n");

printf("結果是

:%d", a * b * c * d * e);

c語言程式設計題:從鍵盤上輸入十個數,輸出其中的最大數和最小數。謝謝!!!

9樓:__戰鬥暴龍獸

我手動給你敲。。

#include

int a[11];

int main()

printf("%d %d\n",mx,mi);

//暫停

//while(1);}

10樓:

//#include "stdafx.h"//if the vc++6.0, with this line.

#include "stdio.h"

int main(void)

printf("the max is %d\nthe min is %d\n",max,min);

return 0;}

VC 6 0編寫程式,從鍵盤上任意輸入正整數,判斷該數是否為素數

include math.h main 用c語言 從鍵盤上任意輸入一個正整數,判斷是否為素數。include include int shu long unsigned num 判斷一個給定的數num是不是素數 是返回1,否則返回0 include stdio.h void main if j i ...

c語言題從鍵盤上輸入任意整數,然後輸出它的絕對值怎

方法一 用數學函式 include include void main 方法二 判斷 include void main problem description 求實數的絕對值。input 輸入資料有多組,每組佔一行,每行包含一個實數。輸入檔案直到eof為止!output 對於每組輸入資料,輸出它的...

編寫C程式,從鍵盤上輸入,長和寬求矩形面積,在螢幕上輸出面積

int length,width printf 請輸入長和寬,中間用逗號分隔 printf n面積為 d length width 編寫一個c程式,從鍵盤上輸入矩形的長和寬,螢幕上顯示對應的矩形周長和麵積 include int main include main include main incl...