① 用c語言如何編寫一個比較兩個數大小的程序
C語言是一門重要的計算機編程基礎課,我們怎麼樣利用C語言的知識來設計程序比較兩個數的大小呢?
一、如何只是比較大小的話,直接一個判斷就ok了。
代碼如下:
#include <stdio.h>
int main()
{
int a=0,b=0;
scanf("%d %d",&a,&b);
if(a>b)
printf("%d > %d\n",a,b);
else if (a<b)
printf("%d < %d\n",a,b);
else
printf("相等\n");
return 0;
}
分析:定義兩個變數,然後輸入它們,用if判斷它們的大小然後用輸出語句輸出結果。
二、步驟
1、首先,打開vc。
2、點擊文件,新建。
3、選擇win32 console application 並在右側輸入工程的名稱和地址,確定。
4、選擇一個空的工程,完成。
5、再次點擊文件,新建。
6、選擇c++ source file 並在右側輸入文件的名字,確定。
7、輸入如圖所示的代碼,注意代碼的輸入要在英文輸入法的環境下。
8、點擊右上角的編譯運行按鈕。
9ok!得到了ij中的最大值並且完成了輸出。這里以i=5 j=6為例,其他需要比較的數字改成相應的數字即可
注意事項
注意代碼的輸入要在英文輸入法下。
字母注意大小寫,符號不要錯
② 比較數字大小
兩個方法:
1。
#include<stdio.h>
#include<conio.h> //加上這個頭文件
void main( )
{
int max(int x,int y);
int a,b,c;
printf("please input the first number:");
scanf("%d",&a);
printf("please input the second number:");
scanf("%d",&b);
c=max(a,b);
printf("max=%d\n",c);
getch();//加上這個語句
}
...
2.
#include<stdio.h>
#include<stdlib.h> //加上這個頭文件
void main( )
{
int max(int x,int y);
int a,b,c;
printf("please input the first number:");
scanf("%d",&a);
printf("please input the second number:");
scanf("%d",&b);
c=max(a,b);
printf("max=%d\n",c);
system("pause");//加上這個語句
}
...