This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void vvod(int arr[], int n) | |
{ | |
printf("vvedite chiclo elementov:"); | |
scanf_s("%d", &n); | |
printf("vvedite elementy:"); | |
for (int i = 0; i < n; i++) | |
{ | |
scanf_s("%d", &arr[i]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "WindowsProject2.h" | |
#define MAX_LOADSTRING 100 | |
HINSTANCE hInst; | |
WCHAR szTitle[MAX_LOADSTRING]; | |
WCHAR szWindowClass[MAX_LOADSTRING]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <Windows.h> | |
void ShifruemoeSoobshenie(char a[][],int d, int size) | |
{ | |
FILE *f; | |
fopen_s(&f, "C:\\temp\\laba.txt", "rt"); | |
int size; | |
int d; | |
fscanf_s(f, "%d", &size); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
int main() | |
{ | |
char key[5][5] = { 'v', 'e', 'r', 'o', 'n', | |
'i', 'c', 'a', 'b', 'd', | |
'f', 'g', 'h', 'k', 'l', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include <stdio.h> | |
#include <Windows.h> | |
void Vvod(char **arr,int &d,int &size) | |
{ | |
int i=0; | |
while(i != EOF) | |
{ | |
scanf_s( "%c", &arr[i]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Пересланное сообщение] | |
Марк Захар, 20 ноября в 12:29 | |
#include "stdafx.h" | |
#include <cstdio> | |
#include <conio.h> | |
int main() | |
{ | |
FILE *f; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <cstdio> | |
#include "string.h" | |
#include <conio.h> | |
#include <stdio.h> | |
void Vvod(char s[],int &key,int &size) | |
{ | |
FILE *f; | |
fopen_s(&f, "C:\\temp\\skitala.txt", "rt"); | |
for (int i = 0;i < key; i++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include <cstdio> | |
#include <conio.h> | |
#include <stdio.h> | |
#include <Windows.h> | |
#include <iostream> | |
int main() | |
{ | |
char a[100][100]; | |
printf("Press Key"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "stdafx.h" | |
#include "WindowsProject5.h" | |
#include "stdio.h" | |
#include <Windows.h> | |
#define MAX_LOADSTRING 100 | |
HINSTANCE hInst; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "pch.h" | |
#include "stdio.h" | |
#include "string" | |
#include <Windows.h> | |
int main() | |
{ | |
int num1[10]; | |
int num2[10]; | |
int numlen1; |
OlderNewer