Q&A Discussions
what have i to do, if i want that the program always writes for example :
0+1
1+2
3+3
6+4
10+5
15+6
...
because now it just writes
1
3
6
10
15
...
and maybe if it works, can i make then
0+1=1
1+2=3
3+3=6
6+4=10
#include <iostream>
using namespace std;
int main(){
int i;
int sum = 0;
for (i = 1; i <= 100; i++){
sum = sum+i;
cout<<sum<<endl;
}
cout<<sum;
return 0;
}
1 Vote
5 AnswersPrblems pls
-2 Votes
4 AnswersHelp please with this task
-1 Vote
3 Answersplease fix this code
0 Votes
1 AnswerCould someone please help me with this..
Write code for an applet class that contains three labels First Number, Second Number, and Sum; three text fields for displaying the values of First Number, Second Number, and Sum, respectively; a button labeled Add. The applet allows the user to enter two integer values and displays the Sum if the Add button is clicked.
Write a html page to run and display the applet appropriately
0 Votes
4 AnswersHot today
OOP python questions
1 Votes
What's wrong with my code?
1 Votes
Python loops
1 Votes
Web page
1 Votes
What is a web browser intension?
1 Votes
Percobaan
0 Votes
Mentors
0 Votes