Bài tập Giải tích số



Comments


  • 1
    tien2003  commented on June 7, 2022, 2:46 p.m. edited
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        long n;
        long t=1;
        cin>>n;
        for(int i=0;i<=n;i++){
            t=t+(2*i-1);
        }
        cout<<t;
    }