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

问题 1047: C语言程序设计教程(第三版)课后习题10.5

时间:2017-06-01 13:11:22      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:color   ons   int   date   res   turn   open   amp   tcp   

/********************************************************************
@file     Main.cpp
@date     2017-06-01 12:17:46
@author   Zoro_Tiger
@brief    问题 1047: C语言程序设计教程(第三版)课后习题10.5
          http://www.dotcpp.com/oj/problem1047.html
********************************************************************/
#include <cstdio>

#define TEST
#undef  TEST

int main(int argc, const char* argv[])
{

#ifdef TEST
    freopen("in.txt", "r", stdin);
    freopen("out.txt", "w", stdout);
#endif

    int number_n = 0;
    scanf("%d", &number_n);

    int result = 0;
    for (int i = 2; i <= number_n; ++i)
    {
        result = (result + 3) % i;
    }
    printf("%d\n", result + 1);

    return 0;
}

 

问题 1047: C语言程序设计教程(第三版)课后习题10.5

标签:color   ons   int   date   res   turn   open   amp   tcp   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/6928266.html

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