對於給定的數字,嘗試找到該數字存在的範圍。
這裡,我們正在學習如何找到一個數字的範圍。
我們套用於找到範圍的邏輯是−
lower= (n/10) * 10; /*the arithmetic operators work from left to right*/ upper = lower+10;
#讓數字n=45
下限=(42/10)*10 / / 除法返回商
=4*10 =40
上限=40 10=50
範圍− 下限-上限− 40-50
以下是用於列印數字範圍的C程式−
#include<stdio.h> main(){ int n,lower,upper; printf("Enter a number:"); scanf("%d",&n); lower= (n/10) * 10; /*the arithmetic operators work from left to right*/ upper = lower+10; printf("Range is %d - %d",lower,upper); getch(); }
#當上述程式被執行時,它會產生以下結果−
Enter a number:25 Range is 20 – 30
這是另一個用於列印數字範圍的C程式。
#include<stdio.h> main(){ int number,start,end; printf("Enter a number:"); scanf("%d",&number); start= (number/10) * 10; /*the arithmetic operators work from left to right*/ end = start+10; printf("Range is %d - %d",start,end); getch(); }
當上述程式被執行時,它會產生以下結果 −
Enter a number:457 Range is 450 – 460
以上是如何使用C語言列印數字範圍?的詳細內容。更多資訊請關注PHP中文網其他相關文章!