1。
創(chuàng)新互聯(lián)是專業(yè)的湘東網(wǎng)站建設(shè)公司,湘東接單;提供網(wǎng)站設(shè)計、做網(wǎng)站,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行湘東網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
#include "stdio.h"
//#define RECURSION 1
#ifdef RECURSION
long fact(int n)
{
if(n1) return 1;
return n*fact(n-1);
}
#else
long fact(int n)
{
long t=1;
for(int i=2;i=n;i++)
t*=i;
return t;
}
#endif
main()
{
long s=0;
for(int i=1;i=10;i++)
s+=fact(i);
printf("%ld\n",s);
}
2。
#include "stdio.h"
bool prime(int n)
{
if(n==1) return false;
for(int i=2;i=n/2;i++)
if(n%i==0) return false;
return true;
}
main()
{
int cnt=0;
int i=3;
while(cnt10)
{
if(prime(i) prime(i+2))
{
printf("(%d,%d)\n",i,i+2);
cnt++;
}
i+=2;
}
}
3。
非遞歸
#include "stdio.h"
void main()
{
int s=0,total=0;
int day=0;
while(s100)
{
if(day%2==0)
{
s+=3;
total+=3;
}
else
{
s-=2;
total+=2;
}
day++;
}
if(s100) total-=(s-100);
printf("total %d days,climb %d metres\n",day,total);
}
遞歸
#include "stdio.h"
struct node{
int day;
int total;
};
struct node f(int dest,int tag)
{
if(tag==0)
{
if(dest=3)
{
struct node temp;
temp.day=1;
temp.total=dest;
return temp;
}
else
{
struct node temp,temp1;
temp1=f(dest-3,1);
temp.day=temp1.day+1;
temp.total=temp1.total+3;
return temp;
}
}
else
{
struct node temp,temp1;
temp1=f(dest+2,0);
temp.day=temp1.day+1;
temp.total=temp1.total+2;
return temp;
}
}
void main()
{
struct node a=f(100,0);
printf("total %d days,climb %d metres\n",a.day,a.total);
}
#includestdio.hint fact(int n)。
{int ans=1,i;if(n=1) return 1;for(i=1;i=n; ++i)ans*=i;return ans;}
int main(){int n,ans;scanf("%d",n);ans=fact(n);printf("ans = %d\n",ans);return 0;}
擴展資料:
順序結(jié)構(gòu):
順序結(jié)構(gòu)的程序設(shè)計是最簡單的,只要按照解決問題的順序?qū)懗鱿鄳恼Z句就行,它的執(zhí)行順序是自上而下,依次執(zhí)行。
例如:a = 3,b = 5,現(xiàn)交換a,b的值,這個問題就好像交換兩個杯子里面的水,這當然要用到第三個杯子,假如第三個杯子是c,那么正確的程序為:c = a; a = b; b = c;執(zhí)行結(jié)果是a = 5,b = c = 3如果改變其順序。
寫成:a = b; c = a; b =c;則執(zhí)行結(jié)果就變成a = b = c = 5,不能達到預期的目的,初學者最容易犯這種錯誤。順序結(jié)構(gòu)可以獨立使用構(gòu)成一個簡單的完整程序,常見的輸入、計算、輸出三步曲的程序就是順序結(jié)構(gòu),例如計算圓的面積。
其程序的語句順序就是輸入圓的半徑r,計算s = 3.14159*r*r,輸出圓的面積s。不過大多數(shù)情況下順序結(jié)構(gòu)都是作為程序的一部分,與其它結(jié)構(gòu)一起構(gòu)成一個復雜的程序,例如分支結(jié)構(gòu)中的復合語句、循環(huán)結(jié)構(gòu)中的循環(huán)體等。
參考資料來源:百度百科-c語言
自定義的函數(shù)名字。
long int是一個類型,如果只是long int fact,則是聲明一個long int類型的名叫fact的變量。如果后面加括號,就是聲明一個返回值是long int類型的名叫fact的函數(shù)。
例如:
long int fact(int n)
{
if(n==0||n==1)
return 1;
else
return n*fact(n-1);
}
long int fact(int n)
{
int i;
long int s=1;
for(i=1;i=n;i++)
s*=i;
return s;
}
擴展資料:
作用
求和用函數(shù)long fact(int m)
#include stdio.h
long fact(int m)
{
if(m==1||m==0) return 1;
else return m*fact(m-1);
}
int main()
{
int m,n;
long result;
printf("please input m and n\n");
scanf("%d%d",m,n);
result=fact(m)+fact(n);
printf("m!+n!=%d",result);
return 0;
}