fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5.  
  6. int A[100];
  7. int cont=1;
  8. int main() {
  9. //primo modo
  10. A[0]=1;
  11. for (int i=1; i<100; i++)
  12. A[i]=A[i-1]+2;
  13.  
  14. for (int i=0; i<100; i++)
  15. cout<<A[i]<<"\t";
  16.  
  17. //secondo modo
  18. int contatore=1;
  19. for (int i=1; i<100; i++)
  20. {
  21. A[i]=contatore;
  22. contatore= contatore +2;
  23. }
  24.  
  25.  
  26. return 0;
  27. }
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
1	3	5	7	9	11	13	15	17	19	21	23	25	27	29	31	33	35	37	39	41	43	45	47	49	51	53	55	57	59	61	63	65	67	69	71	73	75	77	79	81	83	85	87	89	91	93	95	97	99	101	103	105	107	109	111	113	115	117	119	121	123	125	127	129	131	133	135	137	139	141	143	145	147	149	151	153	155	157	159	161	163	165	167	169	171	173	175	177	179	181	183	185	187	189	191	193	195	197	199