This website works better with JavaScript.
Почетна
Преглед
Помоћ
Пријавите Се
liuchunshan
/
DD
Прати
1
Волим
0
Креирај огранак
0
Код
Дискусије
0
Захтеви за спајање
0
Издања
0
Вики
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
Комити
4
Гране
43 KiB
C++
62.7%
C
37.3%
Дрво:
c55e356b67
master
test1
test2
test3
Гране
Ознаке
${ item.name }
Create branch
${ searchTerm }
from 'c55e356b67'
${ noResults }
DD
/
jia
/
chu
/
chu.cpp
15 lines
104 B
Датотека
Blame
Историја
#include "chu.h"
int chu(int a, int b)
{
if (b != 0)
{
return a / b;
}
else
{
return 0;
}
}