zoukankan      html  css  js  c++  java
  • 首师大附中科创教育平台 我的刷题记录(1)

    首师大附中科创教育平台我的刷题记录(今天是我开始写博的第一天,给大家刷1--5题吧)

    仅供同学们参考,禁止抄袭!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    #include<iostream>
    using namespace std;
    int main()
    {
        cout<<"Hello world"<<endl;
        return 0;
    }
    Hello world
    #include<iostream>
    using namespace std;
    int main()
    {
        cout<<"    *"<<endl;
        cout<<"   ***"<<endl;
        cout<<"  *****"<<endl;
        cout<<" *******"<<endl;
        cout<<"*********"<<endl;
        return 0;
    }
    五层小山
    #include<iostream>
    using namespace std;
    int main()
    {
        int a,b;
        cin>>a>>b;
        cout<<a+b<<endl;
        return 0;
    }
    简单的a+b问题
    #include<iostream>
    using namespace std;
    int main()
    {
        cout<<"首师大附中信息技术社,你是我们的骄傲!"<<endl;
        return 0;
    }
    我们的社团
    #include<iostream>
    using namespace std;
    int main()
    {
        int a,b;
        cin>>a>>b;
        cout<<a-b<<endl;
        return 0;
    }
    简单的a-b问题
  • 相关阅读:
    python的基本数据类型
    python数据基本运算处理===循环
    多态、多态性和鸭子类型
    菱形问题、类的组合
    类的继承
    面向对象基础
    软件开发三层架构
    logging模块
    json与pickle模块
    Webbrowser模拟百度一下子点击事件
  • 原文地址:https://www.cnblogs.com/mayitao/p/5833138.html
Copyright © 2011-2022 走看看