Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
4
Downvoting Members
3
4 Commented Posts
0 Endorsements
Ranked #44.2K
~19.6K People Reached
Favorite Tags
Member Avatar for jozz3

I have to convert a piece of C++ code to Python. Except I can't understand what it's doing. This is the code: [CODE]#include <iostream> using namespace std; int calculate(int values[], int size) { int answer = 0; for (int 1 =0; i< size; i +=1) } answer += values[1]; } …

Member Avatar for Smartfitness33
0
8K
Member Avatar for Kumarvarun0609

WAP to check student is first ,second or third . If number is greater than equal to 60->>first If number is greater than equal to 45->>second If number is greater than equal to 33->>third If other than that ->>fail

Member Avatar for hussainmujtaba
-3
243
Member Avatar for vijaytechauthor

Which will be the best programming langugaes to start with in this pandemic situations which is facing by world? I am reading a research of then found this link https://insights.dice.com/2020/04/02/5-best-programming-languages-to-learn-during-covid-19-lockdown/ over the web and does not clear and asking the same to you all, Suggest me your thoughts on it.

Member Avatar for rproffitt
0
221
Member Avatar for Speed_Freak5150

I am trying to get a program to work that asks for a user input to count by that number and display 10 numbers per line. I can not get it to display 10 numbers per line. If anyone can explain to me what I am doing wrong? public static …

Member Avatar for JamesCherrill
1
2K
Member Avatar for Kincso

This is a program to get a student mark, as an input from user and print its grade based on the following criteria: if mark>=80 print 'A' if mark between 70-80 print 'B' if mark between 60-70 print 'C' if mark between 50-60 print 'D' if mark < 50 print …

Member Avatar for Reverend Jim
0
629
Member Avatar for Anil2447

Here is the code for [B][COLOR="Red"]Insertion Sort, Bubble Sort and Selection Sort[/COLOR][/B] [B]Insertion Sort[/B] [CODE] #include <stdio.h> main() { int i,j,key; int a[5]={5,2,3,4,1}; for(i=1;i<5;i++) { key=a[i]; while(i>0 && a[i-1]>key) { j=a[i]; a[i]=a[i-1]; a[i-1]=j; --i; } } int k; for(k=0;k<5;k++) {printf("%d ", a[k]);} printf("\n"); } [/CODE] [B]Bubble Sort[/B] [CODE] #include <stdio.h> …

Member Avatar for Talha_5
0
9K