C + + brush problem--2706: Write a function to find the maximum n value.

Source: Internet
Author: User
2706: Write a function to find the maximum n value. /* Copyright (c) 2014, Yantai University School of Computer * All rights reserved. * File name: Test.cpp * Chen Dani * Completion date: May 26, 2015 * version number: v1.0 */description write a function to satisfy the following conditions the maximum n.:12+22+32+...+n2<k,k value is entered by the keyboard (1000& lt;k<=2000) Sample input1500sample output17#include <iostream>using namespace std;int max (int n) {    int i=1, s=0;    while (S<n)    {        s=s+i*10+2;        ++i;    }    return i-1;} int main () {    int n;    cin>>n;    Cout<<max (n);    return 0;}


Learning experience: Encounter this problem, I suggest or push on the paper, a push to find the law, you can write it. Keep trying!!

C + + brush problem--2706: Write a function to find the maximum n value.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.