Skip to content

Instantly share code, notes, and snippets.

@whalemare
Last active September 23, 2015 16:09
Show Gist options
  • Save whalemare/0c645a1a634949d9d482 to your computer and use it in GitHub Desktop.
Save whalemare/0c645a1a634949d9d482 to your computer and use it in GitHub Desktop.
// classes.cpp: определяет точку входа для консольного приложения.
#include "stdafx.h"
#include "ConsoleApplication9.h"
int main()
{
setlocale(LC_ALL, "rus");
CppStudio objCppstudio(22, 22, 22, "Antosha is molodec"); // объявление объекта и инициализвция элементов данных
objCppstudio.message(); // вызов функции message
objCppstudio.getDate(); // отобразить дату
system("pause");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment