當前位置:首頁 » 編程語言 » c語言求三位數

c語言求三位數

發布時間: 2024-04-26 22:43:39

A. c語言求一個三位數的各位數和

主要思路:
將三位數拆分成個、十、百三位,然後求和

給你個例子:
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
int number;
printf("enter the number:");
scanf("%d",&number);

int wei = number / 100; /*計算百位數字*/
int shiwei =( number - wei * 100 ) / 10; /*計算十位數字*/
int gewei = number % 10; /*計算各位數字*/

printf("%d",gewei+shiwei+wei);

system("PAUSE");
return 0;
}

上例在dev cpp 4.9.9.2中編譯通過

B. c語言 編程求三位數的水仙花數

#include <stdio.h>

int main()
{
int i;
for( i=100; i<1000; i++)
{
int num0 = i%10;
int num1 = i/10%10;
int num2 = i/10/10%10;

if(i==(num0*num0*num0+num1*num1*num1+num2*num2*num2))
{ printf("%5d", i);
}
}
return 0;
}

熱點內容
python寫入mysql資料庫 發布:2024-11-28 02:52:56 瀏覽:431
網站伺服器太忙怎麼進 發布:2024-11-28 02:47:39 瀏覽:719
linux的系統函數 發布:2024-11-28 02:39:52 瀏覽:295
pm編程卡 發布:2024-11-28 02:39:50 瀏覽:564
convertsql 發布:2024-11-28 02:39:50 瀏覽:387
phpwap源碼 發布:2024-11-28 02:36:46 瀏覽:587
狂牛加密視頻破解 發布:2024-11-28 02:32:54 瀏覽:868
騰訊視頻上傳技巧 發布:2024-11-28 02:28:05 瀏覽:239
2016資料庫系統工程師 發布:2024-11-28 02:22:16 瀏覽:892
壓縮機飛動 發布:2024-11-28 02:00:04 瀏覽:274