2064-【例2.1】交换值
输入两个正整数a和b,试交换a、b的值(使a的值等于b,b的值等于a)。
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
int a, b, tmp;
cin >> a >> b;
tmp = a;
a = b;
b = tmp;
cout << a << " " << b;
return 0;
}
2065-【例2.2】整数的和
求3个整数的和。
输入a、b、c这3个整数,求它们的和。
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << a + b + c;
return 0;
}
2066-【例2.3】买图书
已知小明有n元,他买了一本书,这本书原价为m元,现在打8折出售。求小明还剩多少钱(保留2位小数)。
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
cout.flags(ios::fixed);
cout.precision(2);
double n, m;
cin >> n >> m;
cout << n - m * 0.8;
return 0;
}
1006-A+B问题
给定两个整数A和B,输出A+B的值。保证A、B及结果均在整型范围内。
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
cout << a + b;
return 0;
}
1007-计算(a+b)×c的值
给定3个整数a、b、c,计算表达式(a+b)×c 的值。
//爱码岛编程
#include <iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << (a + b) * c;
return 0;
}