Physics, asked by MalayaDhal, 5 months ago

A given mass of water is cooled from 10⁰C to 0⁰C. State the volume changes observed. Represent these changes on a temperature volume bar graph.
Solve this fast....​

Answers

Answered by anindyaadhikari13
6

Answer:-

I have attached the graph. You can check it from there.

And this is the program you told me to give. I am having some problems to give it in messages.

import java.util.*;

class Number

{

public static void main()

{

Scanner sc=new Scanner(System.in);

System.out.print("Enter the number: ");

int n=sc.nextInt();

int smallest=9;

while(n!=0)

{

int d=n%10;

if(d<smallest)

smallest=d;

n/=10;

}

System.out.println("Smallest number is: "+smallest);

}

}

Attachments:
Similar questions