幫小黎解決問題C++鞏固獲得數字每個位置上的數

來源:互聯網
上載者:User

標籤:

現在有一個數字 a= 12345;

想要取得這個數字上的沒一個數字 使用 除法 +模除 的方法可以獲得

原理:除(/)得到的是商     模除(%)的到的是餘數  

採用這種方式,先將要求的數的某一位  除以它的進位位元(個十百千)再模除以進位單位 即可

 

公式: a/(要取得的數位進位位元)%10

如:

  萬位:12345/10000%10 = 1;

  千位:12345/1000%10 = 12%10 = (1...2) = 2;

  百位:12345/100%10  = 123%10= (12.....3) = 3;

    十位:12345/10%10 = 1234 %10=(123.....4) =4;

  個位:12345/1%10 = 12345%10 =(1234...5) =5;

 1 #include <iostream> 2 using namespace std; 3 int main(){ 4     int i; 5     int a,b,c,d; 6      7     for(i=50;i<=1000;i++){ 8         a = i/1%10; 9         b = i/10%10;10         c = i/100%10;11 12         if((a+b+c) == 5){13         d=i;14         cout<<"和為5的數有:"<<d<<endl;15         }16     }17 18 return 0;19 }
View Code

 

每個數字本身 模除 比自己大的數的時候 等於其本身  進位中的進位元是最大的   i%i =0;

幫小黎解決問題C++鞏固獲得數字每個位置上的數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.