1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#include <iostream>// 输出流库 using namespace std;//使用标准命名空间 //课程:4.4 流程结构 三只小猪称体重 int main() { //1、用户输入分数 int a = 0; int b = 0; int c = 0; cout << "请输入A的体重:" << endl; cin >> a; cout << "请输入B的体重:" << endl; cin >> b; cout << "请输入C的体重:" << endl; cin >> c; if (a > b) { if (a > c) { cout << "三只小猪中 A猪最重" << endl; } else { cout << "三只小猪中 C猪最重" << endl; } } else { if (b > c) { cout << "三只小猪中 B猪最重" << endl; } else { cout << "三只小猪中 C猪最重" << endl; } } system("pause");// 控制台暂停,等待下一步操作 return 0;// 结束返回值:0 } |
04.4 三只小猪称体重
未经允许不得转载:Ai分享 » 04.4 三只小猪称体重