1 条题解

  • 0
    @ 2023-6-11 12:16:45

    C :

    #include<stdio.h>
    int main()
    {
      
                       printf("%d",3);
                
        return 0;
    }
    

    C++ :

    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
    	 cout<<3<<endl;
      	 return 0;
    }
    
    

    Python :

    for i in range(1, 17):
        if (25 + i) / (17 - i) == 2:
            print(i)
    
    
    • 1

    信息

    ID
    2269
    时间
    1000ms
    内存
    16MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者