From 2da47d5abd604b495cde98d647eaa4e3a5d52fd1 Mon Sep 17 00:00:00 2001 From: hustmse Date: Tue, 29 Dec 2015 09:05:31 +0800 Subject: [PATCH] Update complex_test.cpp --- complex_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/complex_test.cpp b/complex_test.cpp index 7d67bf6..648f178 100644 --- a/complex_test.cpp +++ b/complex_test.cpp @@ -11,8 +11,8 @@ operator << (ostream& os, const complex& x) int main() { - complex c1(9, 2); - complex c2(4, 5); + complex c1(32, 2); + complex c2(41, 5); cout << c1 << endl; cout << c2 << endl;