• 大小: 2.93KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-判断名次(入门级实例055).zip

资源截图

代码片段和文件信息

// Place.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“
int main()
{
int ABCDE;  //定义5个整型变量
for(A=1;A<6;A++) //将A在1~5的名次中循环
{
for(B=1;B<6;B++) //将B在1~5的名次中循环
{
if(B!=A) //判断变量与已有变量值不相等
{
for(C=1;C<6;C++) //将C在1~5的名次中循环
{
if(C!=B && C!=A)  //判断变量与已有变量值不相等
{
for(D=1;D<6;D++) //将D在1~5的名次中循环
{
if(D!=C && D!=B && D!=A) //将E在1~5的名次中循环
{
for(E=1;E<6;E++) //判断变量与已有变量值不相等
{
//判断变量与已有变量值不相等
if(E!=D && E!=C && E!=B && E!=A)
{
//根据问题设置的条件
if((C!=1) && (D-E==2) && (E!=2) 
&& (A!=1) && (A!=5) && (B-C==1))
{
//输出每个人对应的名次
cout << “A:“ << A << endl;
cout << “B:“ << B << endl;
cout << “C:“ << C << endl;
cout << “D:“ << D << endl;
cout << “E:“ << E << endl;

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1221  2010-08-23 15:13  Place\Place.cpp
     文件        4524  2010-08-23 15:12  Place\Place.dsp
     文件         535  2010-08-23 15:12  Place\Place.dsw
     文件         292  2010-08-23 15:12  Place\StdAfx.cpp
     文件         769  2010-08-23 15:12  Place\StdAfx.h

评论

共有 条评论