mirror of
https://github.com/Lore09/Tesi-Magistrale.git
synced 2025-12-19 12:24:31 +00:00
18 lines
326 B
C
18 lines
326 B
C
@Task
|
|
@LibDeps("stdio.h","stdlib.h")
|
|
float get_average_rand(float values[]){
|
|
return 5;
|
|
}
|
|
@ModuleName("Tattitto")
|
|
@TaskCloud
|
|
@Libdeps("math.h")
|
|
int is_even(int number){
|
|
if(number%2==0)return 1;
|
|
else return 0;
|
|
}
|
|
|
|
@LibDeps("stdio.h","string.h")
|
|
@TaskDevice
|
|
void printaaaa(String text){
|
|
printf("aaaa %s\n",text);
|
|
} |