fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. //ES.1 Scrivere i primi cento numeri naturali.
  6. for(int i=1; i<=100; i++)
  7. cout<<i<<"\t";
  8.  
  9. // 2)scivere tutti i numeri dispari tra 1 e 100.
  10. for(int i=1; i<=100; i=i+2)
  11. cout<<i<<"\t";
  12. cout<<endl<<endl;
  13.  
  14. // 3)scivere tutti i numeri dispari tra 1 e 100 utilizzando if.
  15. for(int i=1; i<=100; i++)
  16. if(i%2==1) {cout<<i<<"\t";}
  17.  
  18. // 4)scivere tutti i numeri dispari tra 1 e 100 utilizzando if.
  19. for(int i=1; i<=100; i++)
  20. if(i%2!=0) {cout<<i<<"\t";}
  21.  
  22. // 5)scivere tutti i numeri pari tra 0 e 100.
  23. for(int i=0; i<=100; i=i+2)
  24. cout<<i<<"\t";
  25. cout<<endl<<endl;
  26.  
  27. // 6)scivere tutti i numeri pari tra 1 e 100 utilizzando if.
  28. for(int i=1; i<=100; i++)
  29. if(i%2==0) {cout<<i<<"\t";}
  30.  
  31. // 7)scivere tutti i numeri pari tra 1 e 100 utilizzando if.
  32. for(int i=1; i<=100; i++)
  33. if(i%2!=1) {cout<<i<<"\t";}
  34.  
  35.  
  36. return 0;
  37. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
1	2	3	4	5	6	7	8	9	10	11	12	13	14	15	16	17	18	19	20	21	22	23	24	25	26	27	28	29	30	31	32	33	34	35	36	37	38	39	40	41	42	43	44	45	46	47	48	49	50	51	52	53	54	55	56	57	58	59	60	61	62	63	64	65	66	67	68	69	70	71	72	73	74	75	76	77	78	79	80	81	82	83	84	85	86	87	88	89	90	91	92	93	94	95	96	97	98	99	100	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	

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	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	0	2	4	6	8	10	12	14	16	18	20	22	24	26	28	30	32	34	36	38	40	42	44	46	48	50	52	54	56	58	60	62	64	66	68	70	72	74	76	78	80	82	84	86	88	90	92	94	96	98	100	

2	4	6	8	10	12	14	16	18	20	22	24	26	28	30	32	34	36	38	40	42	44	46	48	50	52	54	56	58	60	62	64	66	68	70	72	74	76	78	80	82	84	86	88	90	92	94	96	98	100	2	4	6	8	10	12	14	16	18	20	22	24	26	28	30	32	34	36	38	40	42	44	46	48	50	52	54	56	58	60	62	64	66	68	70	72	74	76	78	80	82	84	86	88	90	92	94	96	98	100