码迷,mamicode.com
首页 > 编程语言 > 详细

C语言学习,for循环

时间:2018-08-09 21:10:44      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:1.0   语言   pre   计算   color   sum   i++   clu   stdio.h   

for 循环

#include <stdio.h>
int main()
{
    int flage=1;
    double sum=0;
    for(int i=1;i<=6;i++)
    {
        sum+=flage*(1.0/i);
        flage=-flage;
    }
    printf("%llf",sum);
}

新手,对计算机挺感兴趣的,这个博客将记录我学到的东西。  

C语言学习,for循环

标签:1.0   语言   pre   计算   color   sum   i++   clu   stdio.h   

原文地址:https://www.cnblogs.com/httpwwwachangcom/p/9451478.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!