F&A Diskussionen
Using Mixins in SCSS
 1 Stimme
 3 AntwortenPure Functions - Pure Methods?
 5 Stimmen
 13 AntwortenHelp with function pointers (C)
 2 Stimmen
 1 AntwortCode Problem call of a class
 1 Stimme
 3 AntwortenWrite a static method called weave that that takes two integers as parameters and that returns the result of weaving their digits together to form a single integer. Two numbers x and y are weaved together as follows. The last pair of digits in the result should be the last digit of x followed by the last digit of y. The second-to-the-last pair of digits in the result should be the second-to-the-last digit of x followed by the second-to-the-last digit of y. And so on.
 0 Stimmen
 13 AntwortenAny tips on Python classes?
 3 Stimmen
 1 Antwort#include <iostream>
using namespace std;
int sum(int a, int b=42) {
    int result = a + b;
    return (result);
}
int main() {
    int x = 24;
    int y = 36;
    //calling the function with both parameters
    int result = sum(x, y);
    cout << result << endl;
    //calling the function without b
    result = sum(x);
    cout <<  result << endl;
  return 0;
}
why is da last function cout 66 and not 48 isn't it suppose to add 24+24?
 1 Stimme
 6 AntwortenHeute heiß
How create a new language ?
 1 Votes
Beginner question
 0 Votes
I need help to solve this
 0 Votes
Project
 0 Votes