实验三

 

一. 程序代码

1.计算 s = 22 + 42 + 62 + 82 + 102 + . . . . +1002

#include "stdafx.h"

int main(int argc, char* argv[])
{    
    long s;
    s = 0;
    int a=22;
    for(;a<=1002;a+=20){
        s+=a;
    }
    printf("%lld\n",s);


    return 0;
}
#include "stdafx.h"

int main(int argc, char* argv[])
{    
    long s;
    s = 0;
    int a=22;
    while(a<=1002){
        s+=a;
        a+=20;
    }
    printf("%lld\n",s);


    return 0;
}
#include "stdafx.h"

int main(int argc, char* argv[])
{    
    long s;
    s = 0;
    int a=22;
    do{
        s+=a;
        a+=20;
    }while(a<=1002);
    printf("%lld\n",s);


    return 0;
}

2.水仙花数

#include "stdafx.h"
#include<math.h>
int main(int argc, char* argv[]) { int a,b,c,d; for (a = 100 ; a <= 999 ; a++){ b = a%10; c = (a/10)%10; d = a/100; if(a == pow(b,3) + pow(c,3) + pow(d,3)) printf("%d\n",a); } return 0; }


3.有 1,2,3,4,5,五个数字,编写程序,计算该五个数字能组成多少个互不相同且无重复的三位数

#include "stdafx.h"

int main(int argc, char* argv[])
{
    int a, b, c;
    int num=0;
    for(a=1;a<=5;a++)
        for(b=1;b<=5;b++)
            for(c=1;c<=5;c++)
                if(a == b || b==c || a==c) continue;
                else{
                    printf("%d\t",100 * a + 10 * b + c);
                    num++;
                }
    printf("%d\n",num);
    return 0;
}

 

二. 程序运行结果截图

1.

2.

3.

转载于:https://www.cnblogs.com/p201821440039/p/10750015.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值