See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| server { | |
| # adjusted nginx.conf to make Laravel 9 and Laravel 10 apps with PHP 8.0, 8.1 and 8.2 features runnable on Azure App Service | |
| # @see https://laravel.com/docs/10.x/deployment | |
| # @see https://laravel.com/docs/9.x/deployment | |
| listen 8080; | |
| listen [::]:8080; | |
| root /home/site/wwwroot/public; | |
| index index.php; | |
| server_name example.com www.example.com; |
| import java.util.*; | |
| public class idades { | |
| public static void main(String [] x) { | |
| int idade, qtdIdade=0, soma=0, maiorIdade=0, maior=0, i; | |
| float media; | |
| Scanner leia = new Scanner(System.in); | |
| do{ | |
| System.out.print ("Escreva a idade: "); | |
| idade = leia.nextInt(); | |
| qtdIdade++; |