permotcat 发表于 2021-11-30 14:54

C语言 常用语法@1(参考小无余)

#include<stdio.h>
int main()
{
        /*
        //任意读入两个整数,将二者的值交换后输出。
        int a,b,t;
        scanf("%d,%d",&a,&b);
        printf("%d,%d\n",a,b);
        t=a;a=b;b=t;
        printf("%d,%d\n",a,b);
        */

        /*
        //任意读入三个整数,然后按从小到大的顺序输出。
        int a,b,c,t;
        scanf("%d%d%d",&a,&b,&c);
                //以下两个if语句使得a中存放的数最小
        if(a>b){ t=a; a=b; b=t; }
        if(a>c){ t=a; a=c; c=t; }
                //以下if语句使得b中存放的数次小
        if(b>c) { t=b; b=c; c=t; }
        printf("%d,%d,%d\n",a,b,c);
        */

        /*
        //累加
        int i,s;
        i=0;
        while(i<=100)
        {
                s=0;
                s=s+i;      //累加式
                i=i+1;      //计数器
        }
        printf("1+2+3+...+100=%d\n",s);
        */

        /*
        //10!=1×2×3×……×10 10的阶乘
        int i;
        long c;
        c=1;i=1;
        while(i<=10)
        {
                c=c*i;      //累乘式
                i=i+1;                //计数器
        }
        printf("1*2*3*...*10=%ld\n",c);
        */
       
        /*
        //用穷举法输出所有的水仙花数 @1
        int x,g,s,b;
        for(x=100;x<=999;x++)
        {
                g=x%10;
                s=x/10%10;
                b=x/100%10;
                if(b*b*b+s*s*s+g*g*g==x)
                printf("%d\n",x);
        }
        */
       
        /*
        //用穷举法输出所有的水仙花数 @2
        int g,s,b;
        for(b=1;b<=9;b++)
                for(s=0;s<=9;s++)
                        for(g=0;g<=9;g++)
                                if(b*b*b+s*s*s+g*g*g==b*100+s*10+g)
                                printf("%d\n",b*100+s*10+g);
        */



}

lollogin 发表于 2021-11-30 15:30

也在学c,有没有什么好的课程或者书籍推荐吗

kk159 发表于 2021-11-30 15:34

lollogin 发表于 2021-11-30 15:30
也在学c,有没有什么好的课程或者书籍推荐吗

葵花宝典

tlf 发表于 2021-11-30 15:46

Arsahi 发表于 2021-11-30 16:01

学习学习

permotcat 发表于 2021-11-30 16:03

lollogin 发表于 2021-11-30 15:30
也在学c,有没有什么好的课程或者书籍推荐吗

小甲鱼视频,C语言网,黑马教程都行

2632692689 发表于 2021-11-30 17:41

谢谢老师

1024A1024 发表于 2021-11-30 17:58

以前有不少C、C++的视频学习
页: [1]
查看完整版本: C语言 常用语法@1(参考小无余)