Python 3
y = int(input()) #Ввод переменной y
y -= 1 #Уменьшение переменной на 1
print(y) #Вывод переменной y
или
print(y - 1) #Вывод переменной y уменьшенной на 1
C++
#include <iostream>
using namespace std;
int main(){
int y;
cin >> y; #Ввод переменной y
y --; #Уменьшение переменной на 1
cout << y; #Вывод переменной y
return 0;
}
cout << y - 1; #Вывод переменной y уменьшенной на 1
Псевдокод :
Начало
объявление целых переменных a и b
ввод a,b
вывод a+b
вывод a*b
Конец
c# :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _1
{
class Program
static void Main(string[] args)
Console.Write("Число a : ");
int a = int.Parse(Console.ReadLine());
Console.Write("Число b : ");
int b = int.Parse(Console.ReadLine());
Console.WriteLine("Сумма чисел a и b : {0}",a+b);
Console.WriteLine("Произведение чисел a и b : {0}", a*b);
Console.ReadKey();
PascalABC :
var
a,b:integer;
Begin
readln(a,b);
writeln(a+b);
writeln(a*b);
End.
Python 3
y = int(input()) #Ввод переменной y
y -= 1 #Уменьшение переменной на 1
print(y) #Вывод переменной y
или
y = int(input()) #Ввод переменной y
print(y - 1) #Вывод переменной y уменьшенной на 1
C++
#include <iostream>
using namespace std;
int main(){
int y;
cin >> y; #Ввод переменной y
y --; #Уменьшение переменной на 1
cout << y; #Вывод переменной y
return 0;
}
или
#include <iostream>
using namespace std;
int main(){
int y;
cin >> y; #Ввод переменной y
cout << y - 1; #Вывод переменной y уменьшенной на 1
return 0;
}
Псевдокод :
Начало
объявление целых переменных a и b
ввод a,b
вывод a+b
вывод a*b
Конец
c# :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _1
{
class Program
{
static void Main(string[] args)
{
Console.Write("Число a : ");
int a = int.Parse(Console.ReadLine());
Console.Write("Число b : ");
int b = int.Parse(Console.ReadLine());
Console.WriteLine("Сумма чисел a и b : {0}",a+b);
Console.WriteLine("Произведение чисел a и b : {0}", a*b);
Console.ReadKey();
}
}
}
PascalABC :
var
a,b:integer;
Begin
readln(a,b);
writeln(a+b);
writeln(a*b);
End.