AnandaVieira

Aprendendo Algoritmo 1

Feb 23rd, 2021 (edited)
609
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 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.             /* 01 – Elaborar um algoritmo que imprima a frase abaixo:
  11.             “Aprendendo Algoritmo” */
  12.            
  13.             Console.WriteLine("Aprendendo Algoritmo");
  14.         }
  15.     }
  16. }
  17.  
Add Comment
Please, Sign In to add comment