Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,859 questions

51,780 answers

573 users

How to use arithmetic operators in Dart

1 Answer

0 votes
void main() {
    var x = 10;
    var y = 4;
 
    var addition = x + y;
    var subtraction = x - y;
    var multiplication = x * y;
    var division = x / y;
    var division_integer = x ~/ y;
    var modulus = x % y;
    var increment = ++x;
    var decrement = --y;
 
    print('x + y = $addition');
    print('x - y = $subtraction');
    print('x * y = $multiplication');
    print('x / y = $division');
    print('x ~/ y = $division_integer');
    print('x % y = $modulus');
    print('++x = $increment');
    print('--y = $decrement');
}
   

   
   
/*
run:

x + y = 14
x - y = 6
x * y = 40
x / y = 2.5
x ~/ y = 2
x % y = 2
++x = 11
--y = 3
   
*/

 



answered Oct 11, 2022 by avibootz

Related questions

1 answer 121 views
121 views asked Oct 12, 2022 by avibootz
1 answer 153 views
1 answer 112 views
112 views asked Dec 19, 2022 by avibootz
2 answers 124 views
124 views asked Nov 3, 2022 by avibootz
2 answers 130 views
1 answer 106 views
106 views asked Nov 3, 2022 by avibootz
2 answers 138 views
138 views asked Oct 22, 2022 by avibootz
...