Westonci.ca is the Q&A platform that connects you with experts who provide accurate and detailed answers. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform.

Explain the integer and float datatypes with example.


Sagot :

Answer:

Integers and floats are two different kinds of numerical data. An integer (more commonly called an int) is a number without a decimal point. A float is a floating-point number, which means it is a number that has a decimal place. Floats are used when more precision is needed.

Explanation:

Example:

Int a = 0;      // Create a variable "a" of the datatype "int"

float b = 0.0;  // Create a variable "b" of the datatype "float"

void setup() {

 size(640, 360);

 stroke(255);

}

void draw() {

 background(0);

 

 a = a + 1;

 b = b + 0.2;  

 line(a, 0, a, height/2);

 line(b, height/2, b, height);

 

 if(a > width) {

   a = 0;

 }

 if(b > width) {

   b = 0;

 }

}

Answer: sorry but i need points

Thank you for choosing our service. We're dedicated to providing the best answers for all your questions. Visit us again. We appreciate your time. Please revisit us for more reliable answers to any questions you may have. Thank you for choosing Westonci.ca as your information source. We look forward to your next visit.