Tuesday, January 22, 2019

Hello and Bye!

Write a program that prints a line with the message “Hello and Bye!”.

Input : There is not input: the program does not read anything.

Output : Print exactly the required text in a line.
#include <iostream>
using namespace std;

int main() {
    cout << "Hello and Bye!" << endl;
}

No comments:

Post a Comment

Modelo OSI

Open System Interconnection , Interconexión de Sistemas Abiertos, es un modelo para estudiar las categorías en que se pueden dividir los pr...