- 2
how to print this pattern in c language
12345 23456 34567 45678 56789 *swapped description with title.
3 Réponses
+ 8
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}
https://www.sololearn.com/learn/1344/?ref=app
Please Fix your question and use the correct tags.
https://www.sololearn.com/Discuss/1316935/?ref=app
+ 1
int number = 1234;
int increase = 11111;
for (int i=0; i <5; i++){
cout <<number;
number+=increase
}
//This is in C++, change it to the language you want