Welcome to Westonci.ca, where finding answers to your questions is made simple by our community of experts. Join our platform to connect with experts ready to provide detailed answers to your questions in various areas. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.

write a complete program that declares an integer variable

reads a value from the keyboard into that variable, and writes a single line to standard out[ut consisting of the variable's value, twice the value, and the square of the value, separated by single spaces

Besides the number, nothing else should be in the line written to standard output except for the spaces separating the values.


Sagot :

Answer:

Java:

import java.util.Scanner;

public class Main {

 public static void main(String[] args) {

   Scanner sc = new Scanner(System.in);

   int number = sc.nextInt();

   System.out.println(number + " " + number*2 + " " + number**2);

 }

}

Python:

num = int(input("Number: "))

print(num+" "+num*2+" "+num**2)

C++:

#include <iostream>

int main() {

 int number;

 std::cin >> number;

 std::cout << num << " " << num*2 << " " << num**2;

 return 0;

}