问题:一班43人,每人植树2棵,二班42人,每人植树3棵,三班45人,每人植树2棵,分别计算每个班总植树棵树。

实现自己输入每个班的人数,每人植树的棵树

#include <iostream>
#include <iomanip> //为了使用setw操作符来设置域宽 
using namespace std;

int main()
{
    int a,b,s;
    cout << "请输入班级的人数:" << endl;
    cin >> a;
    cout << "请输入每个人植树的棵数:"  << endl;
    cin >> b;
    s = a * b;
    cout << "总的棵树:" << s << endl; 
    return 0; 
}

预测这个程序的结果:,输入 1 2 3 4

#include <iostream>
#include <iomanip> //为了使用setw操作符来设置域宽 
using namespace std;

int main()
{
    int a,b,c,d;
    cin >> a >> b >> c >> d; 
    cout << a << endl; 
    cout << b << endl; 
    cout << c << endl; 
    cout << d << endl; 
    return 0; 
}