Python学习-while循环练习

1.计算1-100的和

i = 1;
total = 0;
while i <= 100:
        total = total + i;
        i = i + 1;
print(total);

2.打印出1-100的奇数

i = 0;
while i<= 100:
        temp = i % 2;
        if temp == 0:
                pass;
        else:
                print(i);
        i = i + 1;
else:
        print("程序运行结束!");

3.打印5遍“hello world”

num = 0;
n = True;
while n:
        print('hello world');
        num = num + 1;
        if num == 5:
                n = False;

4.计算1+2-3......+100的和

i = 1;
total = 0;
while i <= 100:
        temp = i % 2;
        if  temp == 0:
                total = total - i;
        else:
                total = total + i;
        i = i + 1;
print(total);

  

转载于:https://www.cnblogs.com/pcliu/p/9819836.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值