{"id":22056261,"url":"https://github.com/elmoha943/ayed_pascal","last_synced_at":"2026-01-04T20:45:20.839Z","repository":{"id":49573811,"uuid":"375668145","full_name":"ElMoha943/AyED_Pascal","owner":"ElMoha943","description":"Ejercicios de pascal de UTN FRRO","archived":false,"fork":false,"pushed_at":"2021-10-21T21:17:09.000Z","size":41,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-19T19:54:30.090Z","etag":null,"topics":["hacktoberfest","pascal"],"latest_commit_sha":null,"homepage":"","language":"Pascal","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ElMoha943.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-10T11:05:42.000Z","updated_at":"2021-10-21T21:17:13.000Z","dependencies_parsed_at":"2022-08-20T14:21:21.252Z","dependency_job_id":null,"html_url":"https://github.com/ElMoha943/AyED_Pascal","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElMoha943%2FAyED_Pascal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElMoha943%2FAyED_Pascal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElMoha943%2FAyED_Pascal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ElMoha943%2FAyED_Pascal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ElMoha943","download_url":"https://codeload.github.com/ElMoha943/AyED_Pascal/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245128114,"owners_count":20565206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hacktoberfest","pascal"],"created_at":"2024-11-30T16:13:10.367Z","updated_at":"2026-01-04T20:45:20.798Z","avatar_url":"https://github.com/ElMoha943.png","language":"Pascal","readme":"# AyED_Pascal\nEjercicios de pascal de UTN FRRO\n\n### [Guia para tener de referencia](https://www.tutorialspoint.com/pascal/index.htm)\n\n### Template\n\n```Pascal\nProgram EJ6; //Nombre del programa\nUses crt; //Libreria\n\nConst //Variables constantes\n\nType //Tipos de variable definidos por el usuario (?\nnotas = array [30] of integer;\n\nVar //Variables globales\ni:integer\nNotas:notas\nCant:integer\nProm:float\n\nbegin //Las estructuras se encierran entre begin y end ( {} )\n     For i := 1 to 30 do\n     Begin\n        writeln ('Ingrese una nota'); //Escribir\n        readln (Notas[i]); //Leer\n        Prom := Prom + Notas[i] //En pascal se asigna (\u003c-) con := y no con =\n     End;\n     Prom:=Prom/30\n     For i := 1 to 30 do\n     Begin\n        If(Notas[i]\u003e=Prom) //Si solo hay una instruccion dentro no requiere poner begin y end\n           Cant := Cant + 1\n     End;\n     writeln(,' alumnos obtuvieron nota superior al promedio')\n     readkey(); //getch(), espera a que se pulse una tecla para dejar leer la consola.\nend.\n```\n\n### Operators\n\nOperator | Operation | Operands | Result\n------------ | ------------- | ------------ | -------------\n'+' | Addition or unary positive | real or integer | real or integer\n'-' | Subtraction or unary negative | real or integer | real or integer\n'*' | Multiplication | real or integer | real or integer\n'/' | Real division | real or integer | real\n'div' | Integer division | integer | integer\n'mod' | Modulus (remainder division) | integer | integer\n\n### Standard Functions\n\nFunction | Description | Argument type | Return type\n------------ | ------------- | ------------ | -------------\nabs | absolute value | real or integer | same as argument\narctan | arctan in radians | real or integer | real\ncos | cosine of a radian measure | real or integer | real\nexp | e to the given power | real or integer | real\nln | natural logarithm | real or integer | real\nround | round to nearest integer | real | integer\nsin | sin of a radian measure | real or integer | real\nsqr | square (power 2) | real or integer | same as argument\nsqrt | square root (power 1/2) | real or integer | real\ntrunc | truncate (round down) | real or integer | integer\n\nFunction | Description | Argument type | Return type\n------------ | ------------- | ------------ | -------------\nchr | character with given ASCII value | integer | char\nord | ordinal value | integer or char | integer\npred | predecessor | integer or char | same as argument type\nsucc | successor | integer or char | same as argument type\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felmoha943%2Fayed_pascal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felmoha943%2Fayed_pascal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felmoha943%2Fayed_pascal/lists"}