mirror of https://github.com/01-edu/public.git
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.
28 lines
443 B
28 lines
443 B
5 years ago
|
package main
|
||
|
|
||
|
//This solution is the placeholder of the student solution
|
||
|
// for an exercise in the exam asking for a Function
|
||
|
//Remember the disclaimer!!!!
|
||
|
//1) here the package is main
|
||
|
//2) It does need an empty func main(){}
|
||
|
|
||
|
func Priorprime(x int) int {
|
||
|
ans := 0
|
||
|
ok := 0
|
||
|
for i := 2; i < x; i++ {
|
||
|
ok = 1
|
||
|
for j := 2; j*j <= i; j++ {
|
||
|
if i%j == 0 {
|
||
|
ok = 0
|
||
|
}
|
||
|
}
|
||
|
if ok == 1 {
|
||
|
ans += i
|
||
|
}
|
||
|
}
|
||
|
return ans
|
||
|
}
|
||
|
|
||
|
func main() {
|
||
|
}
|