Can someone help me convert C++ to Matlab

1 vue (au cours des 30 derniers jours)
Omar Rodriguez Hernandez
Omar Rodriguez Hernandez le 3 Déc 2019
Modifié(e) : James Tursa le 3 Déc 2019
Help please
I've tried how to do it but I don't get it
  1 commentaire
Raj
Raj le 3 Déc 2019
Looks straightforward. You have mentioned that you have tried something. Can you post that? It doesn't matter if its wrong. We'll take it from there.

Connectez-vous pour commenter.

Réponses (1)

James Tursa
James Tursa le 3 Déc 2019
Modifié(e) : James Tursa le 3 Déc 2019
The += and *= operators behave as follows:
total_salary += daily_salary;
becomes
total_salary = total_salary + daily_salary;
and
daily_salary *= INCREMENTAL_AMOUNT;
becomes
daily_salary = daily_salary * INCREMENTAL_AMOUNT;
The rest is just putting in the value checks and displaying values using MATLAB syntax.

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by