楼主,这三个程序写的比较粗,但我觉得基本意思到了,还满意吗?
第3题其实就是个排序问题。
第2题的提示的确有些劣,提示让人用什么语句写程序真是不好。
第1题类似一个简单的推理机,这样的题多做些很实用。
第3题其实就是个排序问题。
第2题的提示的确有些劣,提示让人用什么语句写程序真是不好。
第1题类似一个简单的推理机,这样的题多做些很实用。
学习-->编程-->交流-->再学习-->再编程-->再交流
写了个一句话比较三个数大小:
#include <IOSTREAM>
using namespace std;
int main(int argc, char* argv[])
{
int a[3];
cout << "Please input the first data: ";
cin >> a[0];
cout << "Please input the second data: ";
cin >> a[1];
cout << "Please input the third data: ";
cin >> a[2];
int max = 0;
max = a[0] > a[1]? (a[0] > a[2]? a[0] : a[2]) : (a[1] > a[2]? a[1] : a[2]);
cout << "the max data is: " << max << endl;
system("pause");
return 0;
}