Last active
September 23, 2015 16:09
-
-
Save whalemare/0c645a1a634949d9d482 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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