Sesiones de PyR
Def Quiz
1 Voto
6 Respuestasdefault arguement ?
0 Votos
2 RespuestasPython: return functions
2 Votos
3 Respuestas#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 Voto
6 RespuestasPython function
1 Voto
2 Respuestaswhat is arguments?
1 Voto
2 Respuestascommand line aregumente
0 Votos
3 Respuestasmap function
1 Voto
4 RespuestasParseInt(readline(),18)
0 Votos
3 RespuestasPython functions
1 Voto
7 RespuestasFunctions
0 Votos
3 RespuestasExplain this code.
0 Votos
4 RespuestasEn tendencia hoy
Pig Latin
0 Votes
Someone can help me
0 Votes
Square Roots
0 Votes
What's wrong with this?
2 Votes
I’m new someone can help me
0 Votes
HTML community, HELP!!
1 Votes
I am a super beginner
0 Votes
What's doctype htMl
2 Votes
How this program executes?
0 Votes