c語言簡單程式設計題

2021-05-04 00:33:55 字數 1519 閱讀 6292

1樓:因特納雄耐爾一定會實現

看在50分的份上。。。。。。。。。。。。。。。。。。。。全部編譯測試通過。!

看在我幫你做作業的這麼辛苦的份上,在加點分吧。。。。。。

//1:

//源**

#include "stdio.h"

void main()

printf("個位、十位、百位上的和是 %d\n",(a%10+a/10%10+a/100));

}//輸出結果:

請輸入一個3位數

6坑爹呢?你輸入的那是3位數嗎?

請重新輸入

321個位、十位、百位上的和是 6

press any key to continue

//2.

//源**

#include "stdio.h"

void main()

printf("\n");

}//輸出結果:

100以內能被3整除且個位數為5的所有正整數有:

15 45 75

press any key to continue

3//源程式:

#include "stdio.h"

void main()

printf("\n");

}//輸出結果:

10~1000之內能能被7整除且十位數為9的數有:

91 98 196 294 392 399 490 497 595 693 791 798 896 994

press any key to continue

//4//源程式:

#include "stdio.h"

void main()

printf("\n");

}//輸出結果:.:

1904 1908 1912 1916 1920 1924 1928 1932 1936 1940 1944 1948 1952

1956 1960 1964 1968 1972 1976 1980 1984 1988 1992 1996 2000

press any key to continue

//5.

//源**:

#include "stdio.h"

int agn(int i)

void main()

//輸出結果:

第七個人的年紀為32

press any key to continue

2樓:匿名使用者

1# include "stdio.h"

main()

2# include "stdio.h"

main()

3# include "stdio.h"

main()

4# include "stdio.h"

main()

5# include "stdio.h"

main()

int age(int x)

C語言程式設計題,C語言程式設計題

兩種思路,一種設計過程比較簡單,就是直接用程式模擬所有可能的路徑,把合題意的走法全部計數。這種演算法的時間複雜度大約在o 2 n 左右,比較慢。另一種是建立一個數學模型,採用組合數的思想解這個問題,這樣設計出程式只是一個數學計算過程,組合數計算最快的演算法是o n 在加上求和,演算法時間複雜度為o ...

c語言程式設計題,C語言程式設計題

include using namespace std class date date int year,int month,int day year year month month day day date void set int y,int m,int d int gety int getm...

C語言的程式設計題,急 c語言程式設計題

整元換零錢的問題,把一元換成一分,2分,5分的硬幣,共有多少種換法?include main printf d count 4 用分支編寫程式,把從鍵盤輸入的數字按下列對應關係顯示。輸入數字 顯示 1 up 2 down 3 left f 4 right 其它 include main 1.incl...