2021团体程序设计天梯赛 L1-2 两小时学完C语言

思路:

a+b problem

Tip:

#include <bits/stdc++.h>

using namespace std;

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

  

posted @ 2021-04-27 10:07  Whiteying  阅读(273)  评论(0编辑  收藏  举报