using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Global
{
class Program
{
static void Main(string[] args)
{
string first_x = Console.ReadLine();
int first_input = Convert.ToInt16(first_x);
int y = 1 - first_input;
y = y + 3 * Get_x();
y = y - 4 * Get_x();
Console.Write(y);
Console.Read();
}
static int Get_x()
{
string input = Console.ReadLine();
int x = Convert.ToInt16(input);
return x;
}
}
}
Объяснение:
Поделитесь своими знаниями, ответьте на вопрос:
Выведите на экран в три столбца список чисел от 1 до n, их квадратов и кубов. число n вводите с клавиатуры. на c++
using namespace std;
int main()
{
int n;
cin >> n;
for (int i=1; i<=n; i++) {
cout << i << " " << i*i << " " << i*i*i << "\n";
}
return 0;
}
Пример:
5
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125