Advertisement
AnandaVieira

Aprendendo Algoritmo 2

Feb 23rd, 2021 (edited)
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ScriptAlgoritmo
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.            
  10.             /*02 – Elabore um algoritmo que imprima a frase da maneira descrita abaixo, uma frase
  11.             abaixo da outra:
  12.             Aprendendo Algoritmo
  13.             e Fazendo muito Exercício
  14.             Primeiro fazendo exercício em ‘C#’*/
  15.  
  16.             Console.Write("Aprendendo Algoritmo\nFazendo muito ExercícioPrimeiro\nfazendo exercício em 'C#'");
  17.         }
  18.     }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement