8 条题解

  • 5
    @ 2022-9-17 23:16:29

    #include <stdio.h>

    int main() { int x,f; scanf("%d",&x);

    f=x*x+2*x+5;
    printf("%d",f);
    
    return 0;
    

    }

    • 1
      @ 2025-5-1 22:13:37
      #include "bits/stdc++.h"
      using namespace std;
      int main(){
          int x;
          cin>>x;
          cout<<x*x+2*x+5;
          return 0;
      }
      
      • 1
        @ 2024-4-19 14:45:30
        #include <stdio.h>
        int main()
        {
            int a;
            scanf("%d",&a);
            printf("%d",a*a+2*a+5);
            return 0;
        }
        ////B站搜索关注Siglota喵
        
        • 0
          @ 2024-9-24 13:28:44

          #include<stdio.h> int main() { int x; scanf("%d",&x); printf("f=%d",xx+2x+5); return 0;

          }这样对吗

          • 0
            @ 2023-9-11 13:15:50

            #include<stdio.h> int main() { int x,f; scanf("%d",&x); f=xx+2x+5; printf("%d",f); return 0; }

            • 0
              @ 2023-8-13 17:44:44

              #include<stdio.h> int main() { int f,x; scanf("%d",&x); f=xx+2x+5; printf("%d",f); return 0;

              • 0
                @ 2022-9-15 9:56:41
                #include<iostream>
                using namespace std;
                int main()
                {
                    double n;
                    cin >> n;
                    cout << n*n + 2*n +5 <<endl;
                    return 0;
                }
                
                • -3
                  @ 2022-9-13 21:10:31

                  #include<stdio.h> int main() { int f,x; scanf("%d",&x);

                  f=x*x+2*x+5;
                  printf("%d",f);
                  return 0;
                  

                  }

                  • 1

                  信息

                  ID
                  4
                  时间
                  1000ms
                  内存
                  128MiB
                  难度
                  5
                  标签
                  递交数
                  8753
                  已通过
                  3367
                  上传者