This website works better with JavaScript.
Home
Explore
Help
Sign In
liuchunshan
/
first
Watch
1
Star
0
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.
1
Commit
1
Branch
30 KiB
C++
52.6%
Text
31.1%
C
16.3%
Tree:
a494c9b2f3
master
Branches
Tags
${ item.name }
Create branch
${ searchTerm }
from 'a494c9b2f3'
${ noResults }
first
/
jia
/
chu
/
chu.cpp
15 lines
104 B
Raw
Blame
History
#include "chu.h"
int chu(int a, int b)
{
if (0 != b)
{
return a / b;
}
else
{
return 0;
}
}