c语言基本程序.docVIP

  • 8
  • 0
  • 约3.81万字
  • 约 24页
  • 2016-12-03 发布于江苏
  • 举报
1.输入两个正整数,m和n,求其最大公约数和最小公倍数。 #includestdio.h void main() { ?int hcf(int,int);????? /*函数声明*/ ?int lcd(int,int,int);? /*函数声明*/ ?int u,v,h,l; ?printf(Please input two numbers:\n); ?scanf(%d,%d,u,v); ?h=hcf(u,v); ?printf(H.C.F=%d\n,h); ?l=lcd(u,v,h); ?printf(L.C.D=%d\n,l); } int hcf(int u,int v) { ?int t,r; ?if(vu) ?{t=u;u=v;v=t;} ?while((r=u%v)!=0) ?{u=v;v=r;} ?return(v); } int lcd(int u,int v,int h) { ?return(u*v/h); } 2.输入一行字符,分别统计出其中字母、空格、数字和其他字符的个数。 #includestdio.h int letter,digit,space,others; void main() { ?void count(char[]); ?char text[80]; ?printf(Please input string:\n); ?gets(text); ?

文档评论(0)

1亿VIP精品文档

相关文档