摘要: 5.9.1_P163本来想一起输入用空格隔开的两个数字,先用了这个简单的方案实现,以后学到了再优化。学习-ing。。。 1 #include<iostream> 2 int main(){ 3 using namespace std; 4 cout<<"Enter a value:"; 5 int a; 6 cin >> a; 7 cout<<"Enter another bigger value:"; 8 int b; 9 cin >> b;10 int c;11 int d;12 if (a 阅读全文
posted @ 2013-02-13 17:28 <无影人> 阅读(227) 评论(0) 推荐(0) 编辑