Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
李楚霏
/
cppWork
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8f69997b
authored
Oct 24, 2020
by
李楚霏
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work07
parent
555f686f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
work07/7_13_1.cpp
+18
-0
No files found.
work07/7_13_1.cpp
0 → 100644
View file @
8f69997b
#include<iostream>
using
namespace
std
;
double
sum
(
int
n1
,
int
n2
)
{
return
(
double
)
(
2.0
*
n1
*
n2
/
(
n1
+
n2
));
}
int
main
()
{
int
n1
,
n2
;
while
((
cin
>>
n1
>>
n2
))
{
/* code */
if
(
n1
==
0
||
n2
==
0
)
break
;
cout
<<
"sum:"
<<
sum
(
n1
,
n2
)
<<
endl
;
}
return
0
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment