Kursy
Kursy
Kompilator kodu
Kompilator kodu
Dyskusja
Zespoły
Zaloguj się
Zarejestruj się
Menu
Dyskusje Q&A
Szukaj
Szukaj
Zadaj pytanie
Zadaj pytanie
Write a program to take x and y as input and output the string x, repeated y times. Sample Input hi 3 Sample Output hih
python
-4 głosów
23 odpowiedzi
19th Aug 2021, 2:52 AM
Amala Yakin
How to label x and y in pyqt graph (legend) ?
graph
pyqt
python
python3
0 głosów
4 odpowiedzi
29th Jan 2021, 8:06 AM
Zhenis Otarbay
Write a program to take x and y as input and output the string x, repeated y times.
bigners
python
1 Głos
7 odpowiedzi
9th Feb 2022, 7:36 AM
Forever Knight
int x = 8 , int y = 6, sopln(x&y)
java
0 głosów
2 odpowiedzi
8th Dec 2021, 4:44 AM
Rahul Yadgire
How can i repeat background image to both x and y
html
0 głosów
3 odpowiedzi
30th Aug 2020, 9:08 AM
Dragon
Why is x and y given 0 and 1 respectively
c#
output
0 głosów
1 Odpowiedź
5th Jun 2018, 3:06 PM
bhirkoff
In Python how do I take the input x and y and output x,ytimes given that x is a string and y an integer
variables
0 głosów
2 odpowiedzi
1st Sep 2021, 10:58 AM
Mikah Hannah
def max3bad(x,y,z): maximum = 0 if x >= y: if x >= z: maximum = x elif y >= z: maximum = y else: maximum = z return(maximum)
python
-1 Głos
1 Odpowiedź
19th Mar 2017, 4:40 AM
dhanush ajith
How do I get x and y cords of a click?
python3
0 głosów
2 odpowiedzi
21st Dec 2019, 4:42 AM
Lemonades For Sale
“Write a program to take x and y as input and output the string x, repeated y times” Help
python
2 głosów
4 odpowiedzi
5th May 2022, 5:42 PM
Kieran Vandenberg
Write a program to take x and y as input and output the string x, repeated y times. Sample Input hi 3 Sample Output hih
python
python3
0 głosów
19 odpowiedzi
17th Jan 2022, 3:43 PM
Abdul Wahab
int x = 14; int y = x++; System.out.println(x++); why result is 15?
java
operators
postfix
1 Głos
7 odpowiedzi
31st Jan 2020, 5:27 PM
Mush
Given x and y as input. Print all the power of x from 1 to y.
1 Głos
1 Odpowiedź
17th Feb 2018, 2:00 PM
Roshan Kumar
Please help why are x and y being added together ? What am I missing
def
python3
1 Głos
11 odpowiedzi
28th Oct 2022, 8:10 AM
Steven kervick
Can we replace BETWEEN X AND Y by > and < !!?
betwin
sql
where
1 Głos
5 odpowiedzi
18th May 2017, 11:51 AM
Brahim Chai
Int x = 2; int y = 4; int result = x + y; system.out.printIn( );
operators
-5 głosów
3 odpowiedzi
3rd Dec 2020, 7:54 AM
Titus Njoroge
f x is 10, what are the values of x and y after the statement below is executed?
c
cprogramming
programming
0 głosów
3 odpowiedzi
14th Sep 2021, 7:18 AM
Hanz Rosales
How to calculate x to the power y if x&y are input?
exponent
java
power
1 Głos
3 odpowiedzi
30th Sep 2018, 10:51 AM
Rishabh Rawat
Is this java or javaScript x = getSum(16,13); //x is 29 y =++x;
java
javascript
4 głosów
7 odpowiedzi
11th Mar 2017, 7:41 AM
Ahmed Ozmaan
The output comes x=204.55 and y=10090 but my x is an integer?? int x = 10090; double y = 204.55; Console.WriteLine("x = {1}; y = {0}", x, y);
c#
output
1 Głos
7 odpowiedzi
16th Jun 2016, 12:40 PM
Ankit
What if I wanna use x and y to be affected by animation?
html5
svg
2 głosów
5 odpowiedzi
9th Aug 2018, 5:37 PM
Armann
How to get pos X and Y of object in java
java
sololearn
swing
xy
0 głosów
2 odpowiedzi
28th Apr 2020, 7:52 PM
Grzesiek Sikorski
How to get the value of X divided by Y on the screen?
by
cout
divided
int
x
y
1 Głos
3 odpowiedzi
10th Dec 2017, 5:03 PM
Christopher Johnson
x = 7425 y = 550 print(x/y) Where is the error in this code?
/
0 głosów
6 odpowiedzi
19th Jun 2021, 9:20 PM
EsraaEmam
CHALANGE::Code that output a circle to an X Y grid in bianary.
c#
c++
challenge
html
java
1 Głos
3 odpowiedzi
23rd Oct 2017, 5:18 AM
Bob
Why int x = 16 ‰ int y = 5 equal 1?
c#
0 głosów
4 odpowiedzi
2nd Mar 2017, 2:44 PM
Kovalevich Vladimir
print x copies of the value of x followed by y copies of the value of message.
c++
0 głosów
2 odpowiedzi
7th Oct 2016, 8:13 PM
Steven Cai
HTML5: Code for SVG to animate in both x and y simultaneously
and
animate
html
html5
svg
x
y
0 głosów
3 odpowiedzi
22nd Jul 2018, 11:58 AM
BBIIIGGGG
If x is 10, what are the values of x and y after the statement below is executed?
c
programming
-1 Głos
2 odpowiedzi
14th Sep 2021, 4:09 AM
Hanz Rosales
#include <iostream> using namespace std; int main() { int x = 5, y = 6, z = 50, sum; cout << sum; sum= x + y + z;
c++
1 Głos
2 odpowiedzi
11th Jul 2019, 5:49 PM
Shrusti Singhaniya
How I get 1 with a variable x and y with strings.out ?
notepad
3 głosów
1 Odpowiedź
24th Nov 2019, 1:42 PM
Evergamer 00
def power(x, y): if y == 0: return 1 else: return x * power(x, y-1) print(power(2, 3))
memorization
recursion
2 głosów
9 odpowiedzi
11th May 2019, 9:51 AM
Магомед Акуев
Given two numbers X and Y, write a function that: 1 returns even numbers between X and Y, if X is greater than Y else it returns
(x
{
=
=>
const
myfunction
return
x*
y;
y)
-4 głosów
5 odpowiedzi
5th Oct 2018, 8:24 PM
ohwo oghenekaro
How can I get the x and y position of the mouse ?
javascript
pos
x
y
4 głosów
2 odpowiedzi
26th Feb 2017, 9:44 AM
Ninja Nudiste
what is the output of this code?? int x = 15; int y =6; x% =y; Console.WriteLine(x);
c#
-7 głosów
21 odpowiedzi
10th Jul 2016, 2:19 AM
marl tidalgo
If x = 3 and y = ++x + x++ why y=9 not 8 . And if y= x++ + x++; y =7. What is that ?
c++
operators
0 głosów
11 odpowiedzi
16th Nov 2016, 7:38 PM
Александр Дубина
In two dimension array let say arr[x][y]. How can i make a c program having different x and y value or x and y be the user input
c
0 głosów
3 odpowiedzi
21st Sep 2018, 6:33 PM
Riya Runjhun
What is the output of this code? int x = 1, y = 1, z = 1; cout << (++x || ++y && ++z); cout << x << y << z;
c++
0 głosów
4 odpowiedzi
21st Aug 2018, 10:27 AM
Vedansh
Write a program to take x and y as input and output the string x, repeated y times. Sample Input hi 3
answer
need
0 głosów
5 odpowiedzi
13th Feb 2022, 3:32 AM
Anshpreets 6106
what is the purpose of y=x++ i.e assigning x to y then increment it?
c++
operators
2 głosów
6 odpowiedzi
5th Feb 2017, 7:41 AM
Sopanaadevi.S
Hello I have a little problem why is the value of x 2 after this code Int x = 4; Int y = 9; x =(y%x !=0) ? y/x : y;
c#
1 Głos
8 odpowiedzi
19th Aug 2016, 4:52 PM
mathias
If unsigned int x = 168 and unsigned int y =60; If z = x & y; What's z?
=
=60;
168;
if
x
y
z
0 głosów
1 Odpowiedź
2nd Nov 2022, 6:04 AM
John Nwaigbo
/Calculate X raised yo power Y using different methods while :do while :for
c++
1 Głos
1 Odpowiedź
21st Jan 2023, 6:32 PM
MO SHERIF
A C++ Program To Swap Two Numbers x and y if x is greater than y. Output both numbers
c++
0 głosów
1 Odpowiedź
30th Apr 2020, 9:45 AM
Nathaniel Kwaku Awenate
Two for loops that reads all num in x rows and y columns
python
0 głosów
2 odpowiedzi
8th Jun 2019, 5:57 PM
Marpari
Why (x and y) == y ? Why (x or y) == x ?
python3
0 głosów
3 odpowiedzi
6th Jul 2020, 10:23 AM
Alex
How do I get the x and y of a click using javascript?
html
javascript
0 głosów
1 Odpowiedź
4th Dec 2019, 6:01 AM
Lemonades For Sale
What happens if I assign a variable x to 8, and Y to x, can i later change what value x holds? Or is Y forced to be equal to 8?
ruby
variables
2 głosów
4 odpowiedzi
2nd Jun 2017, 9:40 AM
william
#include <stdio.h> void main() { int x = 1, z = 3; int y = x << 3; printf(" %d\n", y); }
arithmetic
c
0 głosów
3 odpowiedzi
14th Jan 2021, 11:30 AM
yogesh
Please help me complete this program to enable me get an output of y int main() { int x = 9; int y = x % 5; x= ; cout<<x*y ;
c++
1 Głos
4 odpowiedzi
27th Sep 2016, 5:16 PM
Ibim
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
Zadaj pytanie
< Do tyłu
1
2
3
...
5
Dalej >
Popularne dzisiaj
How to get better with problem-solving and programming
2 Votes
Ejercicio Pytho
0 Votes
What is that z for
0 Votes
Bug on "Java for Beginners Module 3 Quiz"
1 Votes
Suggestions needed
4 Votes
What's wrong with this code ? ( Beginner)
1 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