C语言必背18个经典程序

1、/*输出9*9口诀。共9行9列,i控制行,j控制列。*/

#include “stdio.h”

main()

{int i,j,result;

for(i=1;i<10;i++)

{for(j=1;j<10;j++)

{

result=i*j;

printf(“%d*%d=%-3d”,i,j,result);/*-3d表示左对齐,占3位*/

}

printf(“\n”);/*每一行后换行*/

}

}

2、/*古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?
兔子的规律为数列1,1,2,3,5,8,13,21….*/

main()

{

long f1,f2;

int i;

f1=f2=1;

for(i=1;i<=20;i++)

{ printf(“%12ld%12ld”,f1,f2);

if(i%2==0) printf(“\n”);/*控制输出,每行四个*/

f1=f1+f2;/*前两个月加起来赋值给第三个月*/

f2=f1+f2; /*前两个月加起来赋值给第三个月*/

}

}

3、/*判断101-200之间有多少个素数,并输出所有素数及素数的个数。
程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除,
     则表明此数不是素数,反之是素数。*/

#include “math.h”

main()

{

intm,i,k,h=0,leap=1;

printf(“\n”);

for(m=101;m<=200;m++)

{k=sqrt(m+1);

for(i=2;i<=k;i++)

if(m%i==0)

{leap=0;break;}

if(leap) /*内循环结束后,leap依然为1,则m是素数*/

{printf(“%-4d”,m);h++;

if(h%10==0)

printf(“\n”);

}

leap=1;

}

printf(“\nThetotal is %d”,h);

}

4、/*一个数如果恰好等于它的因子之和,这个数就称为“完数”。例如6=1+2+3.编程
   找出1000以内的所有完数。*/

main()

{

static int k[10];

inti,j,n,s;

for(j=2;j<1000;j++)

{

n=-1;

s=j;

for(i=1;i<j;i++)

{if((j%i)==0)

{ n++;

s=s-i;

k[n]=i;

}

}

if(s==0)

{printf(“%d is a wanshu: “,j);

for(i=0;i<n;i++)

printf(“%d,”,k[i]);

printf(“%d\n”,k[n]);

}

}

}

5、/*下面程序的功能是将一个4×4的数组进行逆时针旋转90度后输出,要求原始数组的数据随机输入,新数组以4行4列的方式输出,
请在空白处完善程序。*/

main()

{ int a[4][4],b[4][4],i,j; /*a存放原始数组数据,b存放旋转后数组数据*/

printf(“input 16 numbers: “);

/*输入一组数据存放到数组a中,然后旋转存放到b数组中*/

for(i=0;i<4;i++)

for(j=0;j<4;j++)

{ scanf(“%d”,&a[i][j]);

b[3-j][i]=a[i][j];

}

printf(“arrayb:\n”);

for(i=0;i<4;i++)

{ for(j=0;j<4;j++)

printf(“%6d”,b[i][j]);

printf(“\n”);

}

}

6、/*编程打印直角杨辉三角形*/

main()

{int i,j,a[6][6];

for(i=0;i<=5;i++)

{a[i][i]=1;a[i][0]=1;}

for(i=2;i<=5;i++)

for(j=1;j<=i-1;j++)

a[i][j]=a[i-1][j]+a[i-1][j-1];

for(i=0;i<=5;i++)

{for(j=0;j<=i;j++)

printf(“%4d”,a[i][j]);

printf(“\n”);}

}

7、/*通过键盘输入3名学生4门课程的成绩,
分别求每个学生的平均成绩和每门课程的平均成绩。
要求所有成绩均放入一个4行5列的数组中,输入时同一人数据间用空格,不同人用回车
其中最后一列和最后一行分别放每个学生的平均成绩、每门课程的平均成绩及班级总平均分。*/

#include <stdio.h>

#include <stdlib.h>

main()

{ float a[4][5],sum1,sum2;

inti,j;

for(i=0;i<3;i++)

for(j=0;j<4;j++)

scanf(“%f”,&a[i][j]);

for(i=0;i<3;i++)

{sum1=0;

for(j=0;j<4;j++)

sum1+=a[i][j];

a[i][4]=sum1/4;

}

for(j=0;j<5;j++)

{ sum2=0;

for(i=0;i<3;i++)

sum2+=a[i][j];

a[3][j]=sum2/3;

}

for(i=0;i<4;i++)

{ for(j=0;j<5;j++)

printf(“%6.2f”,a[i][j]);

printf(“\n”);

}

}

8、/*完善程序,实现将输入的字符串反序输出,

如输入windows 输出swodniw。*/

#include <string.h>

main()

{ char c[200],c1;

int i,j,k;

printf(“Enter a string: “);

scanf(“%s”,c);

k=strlen(c);

for (i=0,j=k-1;i<k/2;i++,j–)

{ c1=c[i];c[i]=c[j];c[j]=c1; }

printf(“%s\n”,c);

}

指针法:

void invert(char *s)

{int i,j,k;

char t;

k=strlen(s);

for(i=0,j=k-1;i<k/2;i++,j–)

{ t=*(s+i); *(s+i)=*(s+j); *(s+j)=t; }

}

main()

{FILE *fp;
char str[200],*p,i,j;
if((fp=fopen(“p9_2.out”,”w”))==NULL)
{ printf(“cannot open thefile\n”);
exit(0);
}

printf(“input str:\n”);

gets(str);

printf(“\n%s”,str);

fprintf(fp,“%s”,str);

invert(str);

printf(“\n%s”,str);

fprintf(fp,“\n%s”,str);

fclose(fp);

}

9、/*下面程序的功能是从字符数组s中删除存放在c中的字符。*/

#include <stdio.h>

main()

{ char s[80],c;

int j,k;

printf(“\nEnter a string: “);

gets(s);

printf(“\nEnter a character: “);

c=getchar( );

for(j=k=0;s[j]!= ‘\0’;j++)

if(s[j]!=c)

s[k++]=s[j];

s[k]=’\0’;

printf(“\n%s”,s);

}

10、/*编写一个voidsort(int *x,int n)实现将x数组中的n个数据从大到小
排序。n及数组元素在主函数中输入。将结果显示在屏幕上并输出到文件p9_1.out中*/

#include<stdio.h>

void sort(int *x,int n)

{

int i,j,k,t;

for(i=0;i<n-1;i++)

{

k=i;

for(j=i+1;j<n;j++)

if(x[j]>x[k]) k=j;

if(k!=i)

{

t=x[i];

x[i]=x[k];

x[k]=t;

}

}

}

void main()

{FILE *fp;

int *p,i,a[10];

fp=fopen(“p9_1.out”,”w”);

p=a;

printf(“Input 10 numbers:”);

for(i=0;i<10;i++)

scanf(“%d”,p++);

p=a;

sort(p,10);

for(;p<a+10;p++)

{ printf(“%d “,*p);

fprintf(fp,”%d “,*p); }

system(“pause”);

fclose(fp);

}

11、已知数组a中的元素已按由小到大顺序排列,以下程序的功能是将输入的一个数插入数组a中,插入后,数组a中的元素仍然由小到大顺序排列*/

main()

{ inta[10]={0,12,17,20,25,28,30}; /*a[0]为工作单元,从a[1]开始存放数据*/

int x , i, j=6; /*j为元素个数*/

printf(“Enter a number: “);

scanf(“%d”,&x);

a[0]=x;

i=j; /*从最后一个单元开始*/

while(a[i]>x)

{ a[i+1]=a[i]; i–; } /*将比x大的数往后移动一个位置*/

a[++i]=x;

j++; /*插入x后元素总个数增加*/

for(i=1;i<=j;i++) printf(“%8d”,a[i]);

printf(“\n”);

}

12、/*编写函数replace(char *s,char c1,char c2)实现将s所指向的字符串中所有字符c1用c2替换,字符串、字符c1和c2均在主函数中输入,将原始字符串和替换后的字符串显示在屏幕上,并输出到文件p10_2.out中*/

#include<stdio.h>

replace(char*s,char c1,char c2)

{while(*s!=’\0’)

{ if(*s==c1)

*s=c2;

s++;

}

}

main()

{ FILE *fp;

char str[100],a,b;

if((fp=fopen(“p10_2.out”,”w”))==NULL)

{ printf(“cannot open thefile\n”);

exit(0); }

printf(“Enter a string:\n”);

gets(str);

printf(“Enter a&&b:\n”);

scanf(“%c,%c”,&a,&b);

printf(“%s\n”,str);

fprintf(fp,”%s\n”,str);

replace(str,a,b);

printf(“Thenew string is—-%s\n”,str);

fprintf(fp,”Thenew string is—-%s\n”,str);

fclose(fp);

}

13、/*在一个字串s1中查找一子串s2,若存在则返回子串在主串中的起始位置
,不存在则返回-1。*/

main()

{chars1[6]=”thisis”;char s2[5]=”is”;

printf(“%d\n”,search(s1,s2));

system(“pause”);

}

int search(chars1[],char s2[])

{inti=0,j,len=strlen(s2);

while(s1[i]){

for(j=0;j<len;j++)

if(s1[i+j]!=s2[j]) break;

if(j>=len)return i;

else i++;

}

return -1;

}

14、/*用指针变量输出结构体数组元素。*/

struct student

{

int num;

char *name;

char sex;

int age;

}stu[5]={{1001,”lihua”,’F’,18},{1002,”liuxing”,’M’,19},{1003,”huangke”,’F’,19},{1004,”fengshou”,’F’,19},{1005,”Wangming”,’M’,18}};

main()

{int i;

struct student *ps;

printf(“Num \tName\t\t\tSex\tAge\t\n”);

/*用指针变量输出结构体数组元素。*/

for(ps=stu;ps<stu+5;ps++)

printf(“%d\t%-10s\t\t%c\t%d\t\n”,ps->num,ps->name,ps->sex,ps->age);

/*用数组下标法输出结构体数组元素学号和年龄。*/

for(i=0;i<5;i++)

printf(“%d\t%d\t\n”,stu[i].num,stu[i].age);

}

15、/*建立一个有三个结点的简单链表:*/

#define NULL 0

struct student

{

int num;

char *name;

int age ;

struct student*next;

};

void main()

{

struct studenta,b,c,*head,*p;

a.num=1001;a.name=”lihua”; a.age=18; /* 对结点成员进行赋值 */

b.num=1002;b.name=”liuxing”; b.age=19;

c.num=1003;c.name=”huangke”; c.age=18;

head=&a; /* 建立链表,a为头结点 */

a.next=&b;

b.next=&c;

c.next=NULL;

p=head; /* 输出链表 */

do{

printf(“%5d,%s,%3d\n”,p->num,p->name,p->age);

p=p->next;

}while(p!=NULL);

}

16、/*输入一个字符串,判断其是否为回文。回文字符串是指从左到右读和从右到左读完全相同的字符串。*/

#include<stdio.h>

#include<string.h>

#include<string.h>

main()

{ char s[100];

int i,j,n;

printf(“输入字符串:\n”);

gets(s);

n=strlen(s);

for(i=0,j=n-1;i<j;i++,j–)

if(s[i]!=s[j]) break;

if(i>=j) printf(“是回文串\n”);

else printf(“不是回文串\n”);

}

17、/*冒泡排序,从小到大,排序后结果输出到屏幕及文件myf2.out*/

#include<stdio.h>

void fun(inta[],int n)

{int i,j,t;

for(i=0;i<=n-1;i++)

for(j=0;j<i;j++)

if(a[j]>a[j+1]){t=a[j];a[j]=a[j+1];a[j+1]=t;}

}

main()

{inta[10]={12,45,7,8,96,4,10,48,2,46},n=10,i;

FILE *f;

if((f=fopen(“myf2.out”,”w”))==NULL)

printf(“open file myf2.outfailed!\n”);

fun(a,10);

for(i=0;i<10;i++)

{printf(“%4d”,a[i]);

fprintf(f,”%4d”,a[i]);

}

fclose(f);

}

18、编写函数countpi,利用公式

计算π的近似值,当某一项的值小于10-5时,认为达到精度要求,请完善函数。将结果显示在屏幕上并输出到文件p7_3.out中。

#include<stdio.h>

doublecountpi(double eps) /*eps为允许误差*/

{

int m=1;

double temp=1.0,s=0;

while(temp>=eps)

{ s+=temp;

temp=temp*m/(2*m+1);

m++;

}

return(2*s);

}

main()

{FILE *fp;

double eps=1e-5,pi;

if((fp=fopen(“p7_3.out”,”w”))==NULL)

{ printf(“cannot open thefile\n”);

exit(0);

}

pi= countpi(eps);

printf(“pi=%lf\n”,pi);

fprintf(fp,”pi=%lf\n”,pi);

fclose(fp);

}

                </div>
</article>
  <div class="readall_box csdn-tracking-statistics" data-mod="popu_376">
      <div class="read_more_mask"></div>
      <a class="btn btn-large btn-gray-fred read_more_btn" target="_self">阅读全文</a>
  </div>
  <div class="article_copyright">
    版权声明:开放      </div>
  <ul class="article_collect clearfix csdn-tracking-statistics"  data-mod="popu_378">
      <li class="tit">本文已收录于以下专栏:</li>












  <div class="more_comment">
      <div id="comment_bar" class="trackgin-ad" data-mod="popu_385"></div>
  </div>

  <h3 class="recommend_tit" id="related">相关文章推荐</h3>
  <div class="recommend_list clearfix" id="rasss">
                                                                                  <dl class="clearfix csdn-tracking-statistics" data-mod="popu_387" data-poputype="feed"  data-feed-show="false"  data-dsm="post">
                  <dd>
                      <h2><a href="http://blog.csdn.net/21aspnet/article/details/1540005"  target="_blank" strategy="BlogCommendFromBaidu_0">C语言100个经典的算法</a></h2>
                      <div class="summary">
                          POJ上做做ACM的题语言的学习基础,100个经典的算法C语言的学习要从基础开始,这里是100个经典的算法-1C语言的学习要从基础开始,这里是100个经典的算法题目:古典问题:有一对兔子,从出生后第3...                          </div>
                      <ul>
                          <li class="avatar_img"><a href="http://blog.csdn.net/21aspnet" target="_blank" strategy="BlogCommendFromBaidu_0"><img src="http://avatar.csdn.net/D/3/E/3_21aspnet.jpg" alt="21aspnet" title="21aspnet"></a></li>
                          <li class="user_name"><a href="http://blog.csdn.net/21aspnet">21aspnet</a></li>
                          <li class="time">2007年03月24日 17:00</li>
                          <li class="visited_num"><i class="icon iconfont icon-read"></i><span>68285</span></li>
                      </ul>
                  </dd>
              </dl>
                                                                                                <dl class="clearfix csdn-tracking-statistics downloadElement" data-mod="popu_387" data-poputype="feed"  data-feed-show="false"  data-dsm="post">
                  <dt><a href="http://download.csdn.net/download/chenxh/3" target="_blank" strategy="BlogCommendFromBaidu_1"><img class="maxwidth" src="http://csdnimg.cn/release/download/old_static/images/minetype/zip.svg" alt="" title=""></a></dt>
                  <dd>
                      <div class="summary">
                          <h2><a href="http://download.csdn.net/download/chenxh/3" target="_blank" strategy="BlogCommendFromBaidu_1">Delphi7高级应用开发随书源码</a></h2>
                          <div class="summary">
                              <ul>
                                  <li class="time">2003年04月30日 00:00</li>
                                  <li class="visited_num fileSize">676KB</li>
                                  <li class="download_btn"><a href="http://download.csdn.net/download/chenxh/3" target="_blank">下载</a></li>
                              </ul>
                          </div>
                      </div>
                  </dd>
              </dl>
                                                                                  <script>
                  (function() {
                      var s = "_" + Math.random().toString(36).slice(2);
                      document.write('<div id="' + s + '"></div>');
                      (window.slotbydup=window.slotbydup || []).push({
                          id: '4765209',
                          container: s,
                          size: '808,120',
                          display: 'inlay-fix'
                      });
                  })();
              </script>
                                                            <dl class="clearfix csdn-tracking-statistics downloadElement" data-mod="popu_387" data-poputype="feed"  data-feed-show="false"  data-dsm="post">
                  <dt><a href="http://download.csdn.net/download/chenxh/3" target="_blank" strategy="BlogCommendFromBaidu_2"><img class="maxwidth" src="http://csdnimg.cn/release/download/old_static/images/minetype/zip.svg" alt="" title=""></a></dt>
                  <dd>
                      <div class="summary">
                          <h2><a href="http://download.csdn.net/download/chenxh/3" target="_blank" strategy="BlogCommendFromBaidu_2">Delphi7高级应用开发随书源码</a></h2>
                          <div class="summary">
                              <ul>
                                  <li class="time">2003年04月30日 00:00</li>
                                  <li class="visited_num fileSize">676KB</li>
                                  <li class="download_btn"><a href="http://download.csdn.net/download/chenxh/3" target="_blank">下载</a></li>
                              </ul>
                          </div>
                      </div>
                  </dd>
              </dl>
                                                                                                <dl class="clearfix csdn-tracking-statistics" data-mod="popu_387" data-poputype="feed"  data-feed-show="false"  data-dsm="post">
                  <dd>
                      <h2><a href="http://blog.csdn.net/sinat_32829711/article/details/55103599"  target="_blank" strategy="BlogCommendFromBaidu_3">C语言程序设计经典50例</a></h2>
                      <div class="summary">
                          【程序1】

题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
解答:

#include int main() { int i,j,k,n=0; for(…

Delphi7高级应用开发随书源码

  • 2003年04月30日 00:00
  • 676KB
  • 下载
(function() { var s = "_" + Math.random().toString(36).slice(2); document.write('
'); (window.slotbydup=window.slotbydup || []).push({ id: '4983339', container: s, size: '808,120', display: 'inlay-fix' }); })();

C语言18个经典小程序(二)

7、/*通过键盘输入3名学生4门课程的成绩, 分别求每个学生的平均成绩和每门课程的平均成绩。 要求所有成绩均放入一个4行5列的数组中,输入时同一人数据间用空格,不同人用回车 其中最后一列和最后…

C语言必背18个经典程序

1、/*输出9*9口诀。共9行9列,i控制行,j控制列。*/
#include “stdio.h” main() {int i,j,result; for(i=1;i {for(j=…

Delphi7高级应用开发随书源码

  • 2003年04月30日 00:00
  • 676KB
  • 下载

Delphi7高级应用开发随书源码

  • 2003年04月30日 00:00
  • 676KB
  • 下载

C语言18个经典小程序(二)

7、/*通过键盘输入3名学生4门课程的成绩, 分别求每个学生的平均成绩和每门课程的平均成绩。 要求所有成绩均放入一个4行5列的数组中,输入时同一人数据间用空格,不同人用回车 其中最后一列和最后…
内容举报
返回顶部
收藏助手
src="" id="collectIframe" width="100%" height="360" scrolling="no">
不良信息举报
您举报文章:C语言必背18个经典程序
举报原因:
原文地址:
原因补充:

(最多只允许输入30个字)

<script language="javascript" type="text/javascript">
    var isComment=0;
    //显示隐藏地址
    $(function () {
      console.log("version:phoenix");
        if(isComment){
            $("#report_description").attr("disabled",true);
            $("#sp_n").hide();
            $("#sp_reason").html("评论内容:");
        }
        $(".report_type").click(function () {
            $("#panel_originalurl,#report_other_content").hide();
            switch ($(this).val()) {
                case '3':
                    $("#panel_originalurl").show();
                    $("#originalurl").focus();
                    break;
                case '7':
                    if(isComment){
                        $("#report_other_content").show().focus();
                    }
                    break;
            }

        });

        $("#frmReport").submit(function () {
            if (!currentUserName) {

                if (confirm("您的操作必须登录,是否登录?")) {
                    location.href = "http://passport.csdn.net/account/login?from=" + encodeURIComponent(location.href);
                    return false;
                }
                return false;
            }

            var reportType = $("input[name=report_type]:checked").val();
            if(!reportType){
                alert("请选择举报原因!");
                return false;
            }
            var otherInfo = "";
            switch (reportType) {
                case '3':
                    otherInfo = $("#originalurl").val();
                    if (otherInfo == ""||otherInfo=="http://") {
                        alert("举报抄袭必须提供原创文章地址!");
                        $("#originalurl").focus();
                        return false;
                    } else if(!checkeURL(otherInfo)) {
                        alert("请输入正确的原创文章地址!");
                        $("#originalurl").focus();
                        return false;
                    }
                    break;
                case '7':
                    otherInfo = $("#report_other_content").val();
                    if (isComment && !otherInfo) {
                        alert("请填写举报的具体原因!");
                        $("#report_other_content").focus();
                        return false;
                    }
                    if(!isComment){
                        if(!$("#report_description").val()){
                            alert("请填写举报的具体原因!");
                            $("#report_description").focus();
                            return false;
                        }
                    }
                    break;
            }
            if(!isComment){
                if($("#report_description").val().length>30){
                    alert("举报原因最多只允许输入30个字!");
                    return false;
                }
            }
            nowTime = {
                year: new Date().getFullYear(),
                month: parseInt(new Date().getMonth())+1,
                day: new Date().getDate(),
                hours: parseInt(new Date().getHours())+1,
                minutes: parseInt(new Date().getMinutes())+1,
                seconds: parseInt(new Date().getSeconds())+1
            };
            var data = {
                articleId: fileName,
                commentId: 0,
                reportType: reportType,
                originalurl: $("#originalurl").val(),
                report_other_content: $("#report_other_content").val(),
                report_description: $("#report_description").val(),
                currentUserName: currentUserName,
                updatetime: nowTime.year+'/'+nowTime.month+'/'+nowTime.day+' '+ nowTime.hours+':'+nowTime.minutes+':'+seconds,
                blogUser: username
            };
            if(!isComment){//如果是举报文章
                data.report_other_content = data.report_description;
                // data.report_description = "1. 神经网络这是一个常见的神经网络的图:这是一个常见的三层神经网络的基本构成,Layer L1是输入层,Layer L2是隐含层";
            }

            $.post(blog_address + "/common/report?id="+fileName+"&t=2", data, function (data) {
                if (data.result == 1){
                    SetError("感谢您的举报,我们会尽快审核!");
                }else{
                    if (data.content) alert(data.content);
                }

            });
            return false;
        });

        $("#btnCloseReportDialog").click(function () {
            CloseDiv();
        });

    });

    //提示后关闭方法
    function SetError(error) {
        $("#btnCloseReportDialog").trigger("click");
        alert(error);
        CloseDiv();
    }

    //关闭方法
    function CloseDiv() {

        $.removeMask();
        $("#report_dialog").hide();
        return false;
    }

    //验证url
    function checkeURL(url){
        return /^http(s)?:\/\/([\w-]+\.)+[\w-]+/i.test(url);
    }
</script>


if( (".articlecollectli").length==1)$(".articlecollect").hide();if( (".article_tags li").length==1){ (".article_tags").hide();}(".edit a").attr("href","http://write.blog.csdn.net/postedit/"+fileName); .each( (".edu_li a"),function(){ (this).attr("href", (this).attr("href").replace("blog7","blog9"))}); new CNick('#uid').showNickname(); if( ("#fan").html()=="")
    {
        $("#fan").html(0);
    }




    appendMark(
('.recommend_list').children('a').find('dt'),$('.extension_other'))

评论 18
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值