Дамп всех задач

This commit is contained in:
2017-05-22 13:29:43 +03:00
parent b970626fef
commit 93746b05d7
173 changed files with 2505 additions and 0 deletions

11
C++/for/2.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <iostream>
using namespace std;
int main() {
int k;
for (k=10; k<=100; k=k+2)
cout <<k<<"\n";
system ("pause");
return 0;
}