Menu Close

Tag: coding

Number Pattern 111111 in Java …ftc

Write a program to print following outputs. 1111111111112211113331114444115555516666667777777 INPUT_1:Enter any number:  7 OUTPUT:1111111111112211113331114444115555516666667777777 INPUT_2:Enter any number:  5 OUTPUT:1111111122113331444455555 INPUT_3:Enter any number:  6 OUTPUT:111111111122111333114444155555666666 INPUT_4:Enter any…

Conversion from binary to decimal in Java …ftc

Java Program to convert from binary to decimal number. INPUT_1:Binary:  1101 OUTPUT:Decimal:  13 INPUT_2:Binary:  111 OUTPUT:Decimal:  7 INPUT_3:Binary:  001 OUTPUT:Decimal:  1 INPUT_4:Binary:  1111 OUTPUT:Decimal:  15…

Celsius to Fahrenheit [Python] …ftc

Write a program to Convert the temperature from Celsius to Fahrenheit. INPUT_1:Celsius:  0 OUTPUT:Celsius to Fahrenheit:  32.0 F INPUT_2:Celsius:  30 OUTPUT:Celsius to Fahrenheit:  86.0 F…