Beispiel #1
0
Datei: main.c Projekt: altock/dev
int main(int argc, const char * argv[]) {
    int totalWeight = 10;
    int gibletsWeight = 1;
    int turkeyWeight = totalWeight - gibletsWeight;
    showCookTimeForTurkey(turkeyWeight);
    return 0;
}
int main(int argc, const char * argv[])
{

    // insert code here...
    int totalWeight = 10;
    int glibetsWeight = 1;
    int turkeyWeight = totalWeight - glibetsWeight;
    showCookTimeForTurkey(turkeyWeight);
    return 0;
}