Git Product home page Git Product logo

operators-exercise's Introduction

Exercise 1:

  • Create a simple program using the template to write out the results of addition, subtraction, multiplication, division, and modulus operations.

  • For division, create two integer variables called a and b.

  • Create a third integer variable and name it quotient (the result of a division) that stores the result of the division of a and b, and another integer variable named remainder that stores the remainder (using the % operator). Write out the results using Console.WriteLine or Console.Write to write out the results in the following form: if a = 17 and b = 4, print the following:

    The result should say: 17/4 is 4 remainder 1

Exercise 2:

  • Create a method that will Calculate the area of a circle based on its radius - you can name the method AreaOfCircle.

  • This method will use this formula Math.PI * Math.Pow(radius, 2) and return the area of type double

  • The method will also accept radius as a parameter

  • Allow a user to input a value for radius in the console using the following code:

var radius = double.Parse(Console.ReadLine());

When finished your output should look something like this:

17/4 is 4 remainder 1
what is the radius of your circle?
20
The area of a circle with radius of 20 is 1256.6370614359173
press any key to continue...

Thought Exercise:

What is the value of k in the following code?:

// var is implicit type inferrence (more on this later)
var i = 3;
var j = 4;
var k = ++i * j++;

Console.WriteLine(k); // ouputs ?

operators-exercise's People

Contributors

kateymckenney avatar schwenk-a avatar mvdoyle avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.