Курсы
Курсы
Компилятор кода
Компилятор кода
Обсуждения
Цены
Teams
Войти
Регистрация
Menu
Обсуждения
Поиск
Поиск
Задать вопрос
Задать вопрос
How to print string pattern taking input→HELLO Output: H H HE HE HEL HEL HELL HELL HELLOHELL
c++
pattern
strings
-1 голос
3 ответов
15th Oct 2016, 7:14 AM
Tanuj Patra
consider the following sample input / output. Input: java is Prime 29996224275833 Output: 29996224275833 is a prime number. In
java
only
0 голосов
9 ответов
7th Feb 2017, 2:20 AM
Avinash Jha
circular string triangle pattern Input: 5 ABCDE Output: A \n BC \n DEA \n BCDE \n ABCDE
c
c++
0 голосов
3 ответов
22nd Jun 2019, 4:32 AM
Nikash
Dictionary=["a","am","at","apple","bat","bar","babble","can","foo","spam","spammy","zzyzva"] We also have global Scrabblescores List How get this output: >>>scoreList(["a","s","m","t","p"]) [['a',1], ['am',4], ['at',2], ['spam',8]]
python
-1 голос
4 ответов
5th Oct 2016, 3:05 AM
Vinh Le
int main(){ float a = 0.7; if(0.7>a) printf("hi"); else printf("bye "); } output: hi <---can anyone explain the above code.
c
language
0 голосов
4 ответов
30th May 2019, 3:08 AM
Bala Kumaran
Find the result subtraction, multiplication, division of two integers using + operator. Input: 6 and 4 output:
boolean-logic
1 голос
2 ответов
4th Mar 2018, 7:13 AM
Arjunan
Hi guys. Write a program to take two integers as input and output their sum. Sample Input: 2 8 Sample Output: 10
coding
python3
-4 голосов
8 ответов
5th Dec 2020, 10:26 AM
Lu Kamenye
How can you reverse a word in java? Like this input:hello world output: dlrow olleh. Please explain thanks in advance
in
java
reverse
word
0 голосов
6 ответов
22nd Mar 2018, 3:28 PM
Arjay
How to compare two strings in python inside the characters example: input1 :xy and input 2:xyz output: z
@coding
@program
@python
-1 голос
3 ответов
24th Sep 2022, 3:44 PM
N G Johnson
5 + 4 + 3 + 2 + 1 = 15. Output: Enter a number: 5. The sum of the first 5 integers is 15.
java
2 голосов
7 ответов
21st Oct 2020, 1:09 PM
Celine V. Caballero
Could anyone explain me the output? i = 0 while 1==1: print(i) i = i +1 print("Finished") Output: 0 Finished 1 Fi
output
python
4 голосов
2 ответов
19th Jul 2020, 6:40 PM
Dheeraj Mittal🇮🇳
write a program to print total number of uppercase(distinct) in string. For example INPUT: HiHelloHowAreYou OUTPUT: 3
java
0 голосов
2 ответов
13th Jul 2017, 8:55 AM
kirubason
if anyone get Java output: please tell me… if you know answer so please tell me… please…
input
output
0 голосов
2 ответов
12th Oct 2016, 11:03 AM
rahul gautam
scanf("%2d %d %*f %5s", &x, &y, text); /* input: 1234 5.7 elephant */ printf("%d %d %s", x, y, text); /* output: 12 34
input
output
0 голосов
7 ответов
14th Sep 2020, 12:57 AM
Asad Zaman
Hello, can someone help me to rank numbers. Example: input: a = [35, 26, 65, 15], output: [2nd, 3rd, 1st, 4th].
python
python3
ranking
0 голосов
3 ответов
2nd Mar 2020, 3:52 PM
Osei Kwadwo
function that will check if the substring "IITA" can be found in the given line.The program have to use pointer. Output: YES/NO
c++
0 голосов
4 ответов
25th Oct 2020, 7:44 PM
Mizuki
Write a java program to convert inorder expression to preorder expression in optimized way. Input: a+b*c Output: +a*bc
datastructure
java
0 голосов
1 ответ
20th Apr 2019, 10:17 AM
Abhijeet Farakate
Write a program to take two integers as input and output their sum. Sample Input: 2 8 Sample Output: 10
phyton
-1 голос
4 ответов
3rd May 2021, 9:00 PM
Memet Ekin Parlar
How to make a program that converts numbers to theirs text representation. Example: Input: 1123 Output: one thousand one hun
c++
java
1 голос
3 ответов
8th May 2017, 6:40 AM
Vandi Handika
def make_word(): word = "" for ch in "spam": word +=ch yield word print(list(make_word())) Output: s, sp, spa, spam
generators
python
1 голос
10 ответов
10th Aug 2016, 1:06 PM
Massimo Palladini
Enter a string and the output should be as follows. Input: This is Hyderabad. O. Output: Siht Si Dabaredyh
java
0 голосов
2 ответов
26th Apr 2017, 3:26 PM
Kuldeep Kaluvala
How do you find the union of the set with a given set? OUTPUT: a Set object. I am so lost.
java
0 голосов
2 ответов
16th Sep 2019, 4:00 AM
Ify Nonyelu
Using a while loop. create a C++ program that will display the output below. Output: 55 50 45 40 35 30 25 20
c++
0 голосов
3 ответов
7th Mar 2019, 11:52 PM
Rhea May Abay
I am looking for a function that find A numbers in B range that sum to C Ex: B =5 A =3 C= 8 Output: 1 2 5 1 3 4
c++
python
python3
1 голос
8 ответов
1st May 2021, 1:45 AM
Emad
Python: through the use of modules, write a program that gives you this years calander and the current date and time as output:
calander
modules
python
0 голосов
2 ответов
19th Mar 2017, 9:04 AM
Peet Van Der Walt
Write a program that reads an integer value and prints its each digit in words using a tuple as follows: Input: 48261 Output: Fo
#needanswer
-3 голосов
2 ответов
12th Oct 2020, 3:21 AM
Ripunjay singh CRqndsGCxu
Input: arr[] = {1, 2, 3, 4, 5, 5, 5, 5, 5, 2, 2, 1, 1} Output: 5 Explanation: The subarray (5, 5, 5, 5, 5} has maximum lengt
do
know
-1 голос
2 ответов
2nd Dec 2021, 9:29 AM
Naveen Kumar
question about the output: if shout is placed before the last print statement, why does it give you a "no output" if you run the
"""
a
an
def
exclamation
mark
print
shout(word):
with
word
-1 голос
1 ответ
14th Jun 2020, 11:23 AM
H Liu
Can someone explain this int numb = 15; int *numbptr; numbptr = &numb; *numbptr = 20; cout << *numbptr; Output: 20 why changing the value of the pointer chamge the value of the numb variable too?
c++
pointers
0 голосов
5 ответов
25th Aug 2016, 1:02 AM
Carlos Augusto Silva Gurgel
why this program does not work? it should eliminate all the letters from the word(the string is a word; no spaces) excluding <a e i o u m>. for example : input: optional output: oioal
c++
0 голосов
3 ответов
26th Jun 2016, 8:03 PM
Alex H.
Задать вопрос
Задать вопрос
Задать вопрос
Задать вопрос
< Предыдущий
1
2
Следующий >
Актуальное сегодня
Fast coding (mobile)
1 Votes
..
1 Votes
Beginner_to_SoloLearn
2 Votes
How to learn C++ and how long does it take
1 Votes
Coding help
2 Votes
DSA doubt
1 Votes
Bridge pattern use case
0 Votes
Hofstadter a sequence code coach is not running
0 Votes
Recover challenge history
0 Votes
Data structure using C
0 Votes