This website works better with JavaScript.
Home
Explore
Help
Sign In
linyongji
/
TrainCamp_linyongji_FourOperator
Watch
1
Star
1
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
林永吉的四则运算库
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9
Commits
1
Branch
1.0 MiB
C++
82%
C
18%
Tree:
f77b5b17ab
master
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'f77b5b17ab'
${ noResults }
TrainCamp_linyongji_FourOpe...
/
add
/
A
/
A
/
add.cpp
6 lines
86 B
Raw
Blame
History
#include "add.h"
long long add(int x, int y)
{
return (long long)x + (long long)y;
}