Algoritmo para mostrar el total de días transcurridos desde el inicio de este año

💻 Ingresar la fecha actual y mostrar el número total de días transcurridos desde el inicio de este año, considerando que todos los meses tienen 30 días.



* PSeInt :
Algoritmo full_codigos
    Definir Mes, Dia, Tiempo como Entero;
    Escribir "MOSTRAR LOS DÍAS TRANSCURRIDOS DESDE EL INICIO DEL AÑO.";
    Escribir " ";  
    Escribir Sin Saltar "Ingrese Número de Mes : ";
    Leer Mes;
    Escribir Sin Saltar "Ingrese Número de Día : ";
    Leer Dia;
    Tiempo <- (((Mes - 1) * 30) + Dia);
    Escribir " ";     
    Escribir "Días Transcurridos : ", Tiempo;
FinAlgoritmo

* Python :
print("MOSTRAR LOS DÍAS TRANSCURRIDOS DESDE EL INICIO DEL AÑO.")
mes = int(input("Ingrese Número de Mes : "))
dia = int(input("Ingrese Número de Día : "))
tiempo = (((mes-1)*30)+dia)
print("Días Transcurridos : ",tiempo)

* Lenguaje C :
#include<stdio.h>
int main() {
    int dia, mes, tiempo;  
    printf("MOSTRAR LOS DIAS TRANSCURRIDOS DESDE UNA FECHA DADA.\n\n");        
    printf("Ingrese Numero de Mes : ");
    scanf("%i",&mes);
    printf("Ingrese Numero de Dia : ");
    scanf("%i",&dia);
    tiempo = (((mes-1)*30)+dia);
    printf("\nDias Transcurridos  : %i Dias.\n",tiempo);    
    return 0;
}  

* C++ :
#include<iostream>
using namespace std;
int main() {
    int dia, mes, tiempo;
    cout << "MOSTRAR LOS DIAS TRANSCURRIDOS DESDE UNA FECHA DADA.\n\n";                
    cout << "Ingrese Numero de Mes : ";
    cin >> mes;
    cout << "Ingrese Numero de Dia : ";
    cin >> dia;
    tiempo = (((mes-1)*30)+dia);
    cout << "\nDias Transcurridos  : " << tiempo << " Dias." << endl;
    return 0;
}

* C# :
using System;
using System.Collections.Generic;
using System.Text;
namespace full_codigos
{
    class dias_transurridos
    {
        static void Main(string[] args)
        {
            int dia, mes, tiempo;
            Console.WriteLine("MOSTRAR LOS DIAS TRANSCURRIDOS DESDE UNA FECHA DADA.\n");
            Console.Write("Ingrese Numero de Mes : ");
            mes = int.Parse(Console.ReadLine());
            Console.Write("Ingrese Numero de Dia : ");
            dia = int.Parse(Console.ReadLine());
            tiempo = (((mes - 1) * 30) + dia);
            Console.WriteLine("\nDias Transcurridos   : " + tiempo + " Dias.");
            Console.ReadLine();
        }
    }
}  

* Java Apache | NetBeans :
package full_codigos;
import java.util.Scanner;
public class dias_transcurridos {
    public static void main(String[] args) {
        Scanner ingreso=new Scanner(System.in);  
        int DIA, MES, TIEMPO;
        System.out.print("MOSTRAR LOS DÍAS QUE HAN PASADO DESDE EL INICIO DEL AÑO.\n\n");  
        System.out.print("Ingrese Nro Mes : ");
        MES = Integer.parseInt(ingreso.next());        
        System.out.print("Ingrese Nro Día : ");
        DIA = Integer.parseInt(ingreso.next());
        TIEMPO = ((MES - 1)*30)+DIA;
        System.out.println("DÍAS TRANSCURRIDOS: " + TIEMPO + " DÍAS");      
    }   
}