Courses
Courses
Code Compiler
Code Compiler
Discuss
Teams
Log in
Register
Menu
Q&A Discussions
Search
Search
Ask a question
Ask a question
vector<int,int> a, vector<pair<int,int>> a, vector<vector<int>> a - is same or diff ?
c++
0 Votes
9 Answers
4th Mar 2020, 2:15 PM
stamb
a, b = b, a?
python
0 Votes
4 Answers
3rd Apr 2019, 2:09 AM
tristach605
Int a, b; value numeric
c++
variables
1 Vote
2 Answers
5th Aug 2017, 3:01 PM
Denis Nascimento Vieira
Another a, b = b, a question?
python
python3
0 Votes
4 Answers
13th Apr 2019, 10:20 PM
tristach605
Public static int Add(int a, int b){
method
1 Vote
2 Answers
14th May 2018, 5:41 AM
Sahil Manoharan
In assembly language what does "LD A, (3000H)" mean??
assembly
machine_language
1 Vote
5 Answers
15th Mar 2021, 10:20 AM
Hadjer
How to generate output without the letter a of the characters a, s, d, f, a, s, d, f
arrays
java
javascript
2 Votes
3 Answers
28th Feb 2018, 6:15 AM
Fernando Fergan Yugan
What's the difference between a, b=0,1 and a=0 b=1 in Python?
python
1 Vote
4 Answers
17th Oct 2019, 12:31 PM
rabab mohamed
Please me to correct my code, that when you click a, you output alert("You won\n2 points") and when you click b, c you output al
javascript
0 Votes
3 Answers
12th Apr 2021, 10:07 AM
Тимур Завьялов
Why this code return negative roots if i input a, b,c as 1 5 6
help
please
4 Votes
7 Answers
28th Mar 2020, 5:30 AM
Wade
#include <stdio.h> #include <conio.h> void main() { clrscr(); int A, B, C; A=5; if(A>5) { }printf ("\n A is greater than
ok
-5 Votes
39 Answers
24th Nov 2020, 12:36 PM
sumit dubey
Can variables be declared on a single line e.g, var a, b, c, d, rather than var a, var b, var c, var d, on four separate line?
javascript
variables
0 Votes
5 Answers
14th Feb 2017, 8:31 PM
rodwynnejones
What is the output of this code? a, b, c, d, *e, f, g = range(20) print(len(e))
python
tuples
0 Votes
4 Answers
12th Mar 2020, 8:34 AM
Robbin Omobamidele
Is there a shorter way for this: int sum(int a, int b)?
ansi-c
c
code
expert
programming
short
1 Vote
1 Answer
25th Sep 2018, 9:32 AM
BraveHornet
int a = 1 ; printf ( "%d %d %d", a, ++a, a++ ) ;
c
code
question
quizz
solve
2 Votes
5 Answers
5th Nov 2018, 5:48 AM
Shubham rathore
Help me write Python code for giving discount to product A, B, C with different price per unit
python
python3
1 Vote
13 Answers
7th Dec 2020, 12:27 AM
MUHAMMED TAHIR MUHAMMED
Why does the addition of two char(char a, char b) equal a number(195)?
c#
2 Votes
3 Answers
15th Feb 2017, 7:57 PM
Justin Baker
Write all solutions for a^3+b^3 = c^3 + d^3, where a, b, c, d lie between [0, 10^5]
+
=
a^3
b^3
c^3
d^3
1 Vote
14 Answers
25th Feb 2019, 12:29 PM
Ethem
Программа проверки таблицы умножения a, b, c если a+b=c программа выдает правильно, если другой ответ неправильно
помощь
1 Vote
6 Answers
12th Dec 2017, 12:44 PM
Maks Reih
Say i want to append to the list a, how do i do that?
python
python3
0 Votes
1 Answer
14th Apr 2022, 12:11 AM
Lenoname
store the values A, B, 19 and - 0.42e7 in separate cells that you have declared in C.
c
0 Votes
6 Answers
18th Dec 2020, 10:22 AM
Joshua
I'm so dumb, 😂 i don't understand why int float and char used before a, b, salary and letter? Explain me yr.
data-types
1 Vote
6 Answers
2nd May 2019, 7:49 AM
Mr. Nothing
Rearrange the code to declare a method returning the greater of the two arguments. return a; } public int max(int a, int b) { }
java
methods
-1 Vote
5 Answers
4th Jul 2017, 7:38 AM
Walter Mugo
Which language is best for app developing ?
a,
best,
smart,
which,
1 Vote
2 Answers
9th Oct 2017, 6:37 AM
rajesh vidyarthi
Write a C++ application that sorts characters W, A, T, Y, V in descending order
c++
0 Votes
1 Answer
6th Apr 2020, 4:47 PM
Nyamekeh Forbah Dominic
Created a programmed to read a grade A, B, C, D and print either "Excellent","Honours","Good","pass","failed". Use Nested if ..e
c++
3 Votes
4 Answers
17th Sep 2017, 8:43 PM
Fauzan Mazlam
To write a function int max_of_four(int a, int b, int c, int d)which reads four arguments and returns the greatest of them
function-arguments
0 Votes
2 Answers
13th Sep 2018, 4:02 PM
logesh
here is my code: $(function () { $('.slideArnd').click(function () { $('dt a, dd, h1, h2, h3, h4, p, img').slideUp(
javascript
jquery
0 Votes
2 Answers
5th Apr 2021, 11:21 AM
CedyAdvance
I want the program like this. There are three persons A, B and C. They are participated in elections.
c++
0 Votes
4 Answers
5th Feb 2017, 2:29 PM
Krishna Teja
Write a Psuedo code to input a score and print the corresponding letter grade A, B, C, D, E, F.
c
0 Votes
2 Answers
22nd Aug 2024, 12:31 AM
Kein Joshua Ken
int Max(int a, int b) { if(a>b) ______a else return_ for the largest parameter what should be filled?? help me out
c#
methods
0 Votes
5 Answers
10th Sep 2016, 5:55 AM
Brian Amos
def add(x, y): return x + y def do_twice(func, x, y): return func(func(x, y), func(x, y)) a = 5 b = 10 print(do_twice(add, a, b))
functions
python
return
1 Vote
6 Answers
29th Jul 2016, 10:31 AM
Rupam Das
Why "a,b,c = self.sides" it was used in the below code and why not "self.sides = a, b,c" ??
classes
inheritance
python3
1 Vote
1 Answer
7th Jul 2020, 5:13 PM
Hari Krishna Sahu
Why is the size of the dynamic array b not the same as the array a, even though both have 17 elements ?
arrays
c++
dynamic
sizeof
0 Votes
7 Answers
7th Apr 2018, 6:57 AM
Kuldeep Singh
#include <iostream> using namespace std; int main() {int a, b, sum= a+b; cout << "Enter 1st number \n"; cin >> a; cout << a <<
ggy
2 Votes
3 Answers
4th Jul 2018, 4:24 PM
Haruki
What is the difference between returning values from a function and passing by output e.g. myFunc(out a, out b)
c#
function-arguments
functions
passing
1 Vote
2 Answers
1st Jul 2017, 7:46 AM
Haider Ali
6. Write a C code that takes three integers a, b, c as inputs and output the maximum and minimum of them.
help
need
0 Votes
6 Answers
7th Jul 2017, 3:07 PM
Noushin tabassum
Un código que declare la variable B y asigne valor a, y luego imprima su suma en la pantalla. A=15
variable
-2 Votes
3 Answers
20th Oct 2020, 11:33 PM
Luz Amador
write a function int max_of_four(int a, int b, int c, intd) which reads four arguments and returns the greatest of them
c
0 Votes
3 Answers
11th Dec 2020, 2:55 PM
Rahul
Hi, can anyone print the code for solving the Quadratic formula, for various n-values of a, b and c? THANKS
quadrformula
0 Votes
2 Answers
15th Sep 2018, 10:04 AM
Anne Kjersti Bjørndal
Как создать множество содержащие буквы, имеющиеся во множестве A, но не являющиеся общими для B и C, и все буквы из множества D?
c++
0 Votes
4 Answers
28th Sep 2019, 4:49 PM
Анна Рогозинская
How to split a single word which does not contain any delimiter.? Eg "message" output - [m, e, s, s, a, g, e]]
python
python3
0 Votes
4 Answers
14th Aug 2018, 4:49 AM
Vinay Kumar.M
Given the following set: {b, f, g, h, a, c} You are required to write a C++ programming code that will perform the following
arrays
c++
-3 Votes
6 Answers
7th Jun 2021, 12:09 AM
Loona
#include <stdio.h> int main() { int a, b; float salary = 56.23; char letter = 'Z'; a = 8; b = 34; int c
c
-2 Votes
5 Answers
30th May 2021, 4:29 PM
Manash Anand
Can someone help me debug the code, am trying to add A, B and C together, instead of getting 6(2+2+2) am getting 222
j
1 Vote
2 Answers
14th Feb 2019, 4:49 PM
Somade Daniel
int main() { int a, b; cout << "Enter a number \n"; cin >> a; cout << "Enter another number \n"; cin >> b;
c++
variables
0 Votes
4 Answers
17th Feb 2018, 3:05 PM
Ayesha Tasnim
If a and b: b = ac where a, b, c are integers, and if x % b or x % a over the same loop both output the same thing,
loop
python
time
1 Vote
5 Answers
25th Apr 2022, 9:22 AM
Korkunç el Gato
Hello! I made a programm in visual studio: ..... int a, b, s=0; a=7; b=5; s=a/b; cout<<s; cin.get(); return 0; when i run, programm show me 7/5=1, why not 1,4? please help
c++
1 Vote
9 Answers
17th Jul 2016, 8:04 PM
Cazmir Raul-Alex
If we create new class which has a instance variable int a, without access modified, then what will the access level of int x be
java
0 Votes
1 Answer
28th Sep 2022, 11:50 AM
Oliver Pasaribu
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Y
hackerank
hackerearth
mysql
operators
sql
wildcard
0 Votes
1 Answer
9th Aug 2022, 5:57 PM
Bhuvanagiri Revanth
Ask a question
Ask a question
Ask a question
Ask a question
< Previous
1
2
Next >
Hot today
How to get better with problem-solving and programming
2 Votes
Ejercicio Pytho
0 Votes
What's wrong with this code ? ( Beginner)
2 Votes
What is that z for
0 Votes
Bug on "Java for Beginners Module 3 Quiz"
1 Votes
Suggestions needed
4 Votes
Write a program to find the strings are in isogram or not
0 Votes
Please rate my code from 1 to 10
2 Votes
How to start
0 Votes
Is there any new bug in the projects reply sections?
0 Votes