c语言学习(4)---循环

一、for和while等价替换

  1. int i = 1;  
  2. for (i; i<=100; i++){  
  3.     sum = sum + 1;  
  4. }  
  1. int i = 1;  
  2. while(i<=100){  
  3.     sum = sum + 1;  
  4.     i++;  
  5. }  

二、从键盘输入一个数字,如果该数字是回文数,则返回yes,否则返回no

回文数:正着写倒着写一样的数

  1. # include<stdio.h>  
  2.   
  3. int main(){  
  4.     int val, m, sum=0;  
  5.     printf("请输入您需要判断的数字:");  
  6.     scanf("%d", &val);  
  7.       
  8.     m = val;  
  9.     while(m){  
  10.         sum = sum * 10 + m%10;  
  11.         m /= 10;  
  12.     }  
  13.     if(sum==val){  
  14.         printf("yes\n");  
  15.     }else{  
  16.         printf("no\n");  
  17.     }  
  18.       
  19.     return 0;  
  20. }  

三、斐波拉契数列

1 2 3 5 8 13 21 34.....
从第三项开始每一项是前两项的和

  1. # include <stdio.h>  
  2.   
  3. int main(void){  
  4.     int n;  
  5.     int f1, f2, f3;  
  6.     int i;  
  7.   
  8.     f1 = 1;  
  9.     f2 = 2;  
  10.       
  11.     printf("请输入您需要求得项的序列:\n");  
  12.     scanf("%d", &n);  
  13.   
  14.     if(1==n){  
  15.         f3 = 1;  
  16.     }else if(2==n){  
  17.         f3 = 2;  
  18.     }else{  
  19.         for(i=3; i<=n; i++){  
  20.             f3 = f1 + f2;  
  21.             f1 = f2;  
  22.             f2 = f3;  
  23.         }  
  24.     }  
  25.     printf("%d\n", f3);  
  26.     return 0;  
  27. }  

四、do....while....实现一元二次方程

  1. # include <stdio.h>  
  2. # include <math.h>  
  3.   
  4. int main(void)  
  5. {  
  6.     double a, b, c;   
  7.     double delta;  
  8.     double x1, x2;    
  9.     char ch;  
  10.       
  11.     do    
  12.     {     
  13.         printf("请输入一元二次方程的三个系数:\n");  
  14.         printf("a = ");  
  15.         scanf("%lf", &a);  
  16.           
  17.         printf("b = ");  
  18.         scanf("%lf", &b);  
  19.           
  20.         printf("c = ");  
  21.         scanf("%lf", &c);  
  22.           
  23.         delta = b*b - 4*a*c;  
  24.           
  25.         if (delta > 0)  
  26.         {  
  27.             x1 = (-b + sqrt(delta)) / (2*a);  
  28.             x2 = (-b - sqrt(delta)) / (2*a);  
  29.             printf("有两个解,x1 = %lf, x2 = %lf\n", x1, x2);  
  30.         }  
  31.         else if (0 == delta)  
  32.         {  
  33.             x1 = x2 = (-b) / (2*a);  
  34.             printf("有唯一解,x1 = x2 = %lf\n", x1, x2);  
  35.         }  
  36.         else  
  37.         {  
  38.             printf("无实数解!\n");  
  39.         }  
  40.   
  41.         printf("您想继续么(Y/N): ");  
  42.         scanf(" %c", &ch);  //%c前面必须得加一个空格 原因略  
  43.     } while ('y'==ch || 'Y'==ch);  
  44.       
  45.     return 0;  
  46. }  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值