141k views
4 votes
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.

User Strubbly
by
5.5k points

1 Answer

14 votes

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;

}

User Jayakumar J
by
5.7k points