• 第二章:做一个最简单的c++程序


    第二章:做一个最简单的c++程序

    #include <iostream>

     

    int main() {

             std::cout<<"五年级一般数学成绩表\n";

             std::cout<<"首先是第1名徐帆的成绩:\t"<<100;

             std::cout<<std::endl;

             std::cout<<"首先是第2名小明的成绩:\t"<<90;

             std::cout<<std::endl;

             std::cout<<"首先是第3名小天的成绩:\t"<<80;

             std::cout<<std::endl;

             std::cout<<"首先是第4名李磊的成绩:\t"<<(float)70/3;

             std::cout<<std::endl;

             return0;

    }

     

    1、  iostream

    2、  count

    3、  cin

    4、  main函数的返回值可以根据程序的需要来设定其代表意思。一般,返回0表示正常退出,返回大于0的数据表示运行不正常。

    5、  \t

    6、  endl

    7、  std::(标准命名空间)、namespace

    1

    #include <iostream>

     

    int main() {

             usingstd::cout;

             usingstd::endl;

             cout<<"五年级一般数学成绩表\n";

             cout<<"首先是第1名徐帆的成绩:\t"<<100;

             cout<<endl;

             cout<<"首先是第2名小明的成绩:\t"<<90;

             cout<<endl;

             cout<<"首先是第3名小天的成绩:\t"<<80;

             cout<<endl;

             cout<<"首先是第4名李磊的成绩:\t"<<(float)70/3;

             cout<<endl;

             return0;

    }

     

    2

    #include <iostream.h>

     

    int main() {

            

             cout<<"五年级一般数学成绩表\n";

             cout<<"首先是第1名徐帆的成绩:\t"<<100;

             cout<<endl;

             cout<<"首先是第2名小明的成绩:\t"<<90;

             cout<<endl;

             cout<<"首先是第3名小天的成绩:\t"<<80;

             cout<<endl;

             cout<<"首先是第4名李磊的成绩:\t"<<(float)70/3;

             cout<<endl;

             return0;

    }

    8、  iostream.hiostream的区别

    9、  重名问题

    C++采用命名空间的方法来避免

    #include <iostream>

    namespace a {

             intb = 5;

    }

     

    namespace c {

             intb = 8;

    }

     

     

    int main() {

             intb = 9;

             std::cout<<b<<""<<a::b<<" "<<c::b<<std::endl;

             return0;

    }

    10·修改代码的时候,一定不要忘记修改该行代码所对应的注释。

     

  • 相关阅读:
    一道题DP
    BZOJ 3155: Preprefix sum
    BZOJ:3209: 花神的数论题
    TJU 4087. box
    BZOJ1192: [HNOI2006]鬼谷子的钱袋
    概率DP
    Codeforces Round #253 (Div. 2) D题
    二维树状数组
    Codeforces Round #250 (Div. 2)
    莫比乌斯函数
  • 原文地址:https://www.cnblogs.com/zhujianxipan/p/3146870.html
Copyright © 2020-2023  润新知