Files Classes Functions Hierarchy
#include <iostream>#include <NTL/ZZ.h>
Go to the source code of this file.
Functions | |
| int | main (int argc, char **argv) |
| int main | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 9 of file NTL01_test.cpp.
00010 { 00011 cout << "Enter two large numbers a and b." << endl; 00012 cout << "(a+1)*(b+1) will be computed" << endl; 00013 ZZ a, b, c; 00014 00015 cin >> a; 00016 cin >> b; 00017 00018 c = (a+1)*(b+1); 00019 00020 cout << c << "\n"; 00021 00022 return 0; 00023 }
1.5.8