Dyskusje Q&A
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 Głos
5 odpowiedziPrblems pls
-2 głosów
4 odpowiedziC++
0 głosów
2 odpowiedziplease fix this code
0 głosów
1 OdpowiedźCould 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 głosów
4 odpowiedziPopularne dzisiaj
Countdown Test
1 Votes
diary
1 Votes
Could anyone fix this?
0 Votes
what is empty tag
0 Votes
how do i create a code
0 Votes
Fitting
0 Votes
Leecode?
2 Votes