Saved Bookmarks
| 1. |
Write a program to illustrate the use of all arithematic operations |
|
Answer» All arithmetic operator can only be used with an any variable statement. The arithmetic operators are: + - / * %(modulus operator) // Ex A=3 B=2 A+B .... 5 A-B ........1 A*B ...... 6 A/B........ 3/2 A%B .......1 A//B ....... 1 Hope it HELPS..... For queries, REVERT back in commemts or at [email protected] . I can solve all your PROGRAMMING queries. |
|