Computer Science, asked by syedzahekhussain1806, 1 month ago

this is computer science give ans please ​

Attachments:

Answers

Answered by BetaDecay
0

I am using python language here.

  1. print("If you don't like something, CHANGE IT; if you can't change it, CHANGE the way you think about it")
  2. length = 33.5

breadth = 24

area = length*breadth

print("Area of the screen =" + area + "cm²")

Answered by pratisthaniralaxyz
0

Explanation:

I am using C language here.

1. ans

#include<stdio.h>

main()

{

printf(" <the message> ");

return 0;

}

2. ans

#include<stdio.h>

main()

{

float l=33.5, b=24.0, ar;

ar= l*b;

printf(" Area of the screen= %f",ar);

return 0;

}

Similar questions