c 第二次作業 2019 03 21

2021-09-13 04:03:24 字數 572 閱讀 8423

1.給定兩個整形變數的值,將兩個值的內容進行交換.

#include

#include

int main()

2.不允許建立臨時變數,交換兩個數的內容.

#include

#include

int main()

for(i=0;isystem("pause");

return 0;

5.求十個整數中最大值.

#define _crt_secure_no_warnings

#include

#include

int main()

{int a[10];

int max,i;

printf("請輸入十個數:");

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

scanf("%d",&a[i]);

max=a[0];

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

if( maxmax=a[i];

printf("最大的數%d\n",max);

system("pause");

return 0;

C 第二次作業

1 例題 功能 布林型別使用舉例 include includeusing namespace std int main bool flag true cout 功能 賦值表示式語句的使用 includeusing namespace std int main int a,b,c,d a 4 b a...

c 第二次作業

一 問題及 檔名稱 1 作 者 黃磊 完成日期 2016年3月25日 版 本 號 v1.0 對任務及求解方法的描述部分 進一步了解和學習程式設計序,初識if語句的使用 輸入描述 w,h,x 問題描述 程式輸出 問題分析 演算法設計 三 心得體會 本人第三次程式設計序,初識if語句的使用方法,並加以應...

C 第二次作業

專案一 include using namespace std int main double m,h,x,a,b cout 請輸入您的身高 cm cin h cout 請輸入您的體重 kg cin m x h 100 a x 1.2 b x 0.8 if m a cout 您已超重,最近吃多了哦!...