分类 C++ 下的文章

/**************************
* 演示逻辑运算表达式       *
*************************/
#include<iostream>
using namespace std;
int main()
{
    int x = 0, y = 1, z = 1;      //注释:分别赋值x=0,y=1,z=1
    x && ++y && ++z;      //注释:
    cout << x << '\t' << y << '\t' << z << endl;  //x=0,y=1,z=1
    ++x && y++ &&z++;  //注释:先给x值+1,若x不等于0,则计算右边;判断y是否为0,若
    cout << x << '\t' << y << '\t' << z << endl;  //x=1,y=2,z=2
    ++x || y-- || ++z; //注释:
    cout << x << '\t' << y << '\t' << z << endl;  //x=2,y=2,z=2
    return 0;
}

#include<iostream>
using namespace std;
int main()
{
    float a,b,x;
    cout << "请分别输入a和b的值:";
    cin >> a >> b;
    x = a;
    a = b;
    b = x;
    cout << "a与b交换值后的结果是:" << a << '\t' << b << endl;
    system("pause");
    return 0;
}

#include<iostream>
using namespace std;
int main()
{
    float a,b,c,d;
    cout <<"请输入三个数:";
    cin >> a >> b >> c;
    d = a > (d = (b > c) ? b : c) ? a : d;
    cout <<"这三个数中最大的是:"<< d << endl;
    system("pause");
    return 0;
}

#include <iostream>
using namespace std;
int main()
{
    int x, a, b, c, d;
    int s = 0;
    cout << "请输入一个四位数整数:" ;
    cin >> x;
    a = x % 10;
    b = x / 10 % 10;
    c = x / 100 % 10;
    d = x / 1000 % 10;
    s = a + b + c + d;
    cout <<"每位数相加之和为:"<< s << endl;
    system ("pause");
    return 0;
}

/*************************
*   程序名:平行四边形    *
*   功  能:Unknown      *
*************************/
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    cout << setw(23) << "***************" << endl;
    cout << setw(8) << "*" << setw(14) << "*" << endl;
    cout << setw(7) << "*" << setw(14) << "*" << endl;
    cout << setw(6) << "*" << setw(14) << "*" << endl;
    cout << setw(19) << "***************" << endl;
    system("pause");
    return 0;
}