Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <QCoreApplication>
  2. #include "mathfunctions.h"
  3.  
  4. int main(int argc, char *argv[])
  5. {
  6. QCoreApplication a(argc, argv);
  7. qDebug() << "6! is " << MathFunctions::factorial(6);
  8.  
  9. return a.exec();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement