create a zakat calculator . A person enters his savings that he is kept for one whole year . If his saving is more than 300000 then 2.5% should ne detected otherwise no deduction ahould be made . | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

create a zakat calculator . A person enters his savings that he is kept for one whole year . If his saving is more than 300000 then 2.5% should ne detected otherwise no deduction ahould be made .

visual programming c# please help me to solve it.

9th Sep 2016, 2:19 PM
Eshaal Khan
Eshaal Khan - avatar
1 Answer
+ 1
Do a loop, ask for input inside it, and add inputs to a variable sum (previously initialized to 0) loop after loop, exiting the loop if a negative number is entered (without adding it to sum). Then check if sum is greater than 300000, and if so, multiply sum by 0.975. Return or print sum.
9th Sep 2016, 2:26 PM
Zen
Zen - avatar