Главная » Статьи » Информация |
В категории материалов: 14 Показано материалов: 1-10 |
Страницы: 1 2 » |
Сортировать по: Дате · Названию · Рейтингу · Комментариям · Просмотрам
Метод пузырька C++: |
ПРОВЕРКА BMP ИЗОБРАЖЕНИЯ C++ |
Функции C++ |
Структуры и открытие файлов C++ |
Поиск символа в тексте C++ ASCII: |
#include <conio.h> #include <stdio.h> |
#include <conio.h> #include <stdio.h> void main() |
#include <conio.h> #include <stdio.h> void main() { clrscr(); int Alfa=3 , Betta=5; int i=1; int X[20]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20}; // massiv X int Y[20]={1,2,25,4,5,6,7,3,9,10,11,26,13,14,15,16,17,18,19,20}; // massiv Y int U[20]; //Zadaem novyi massiv for(i=0 ;i<20 ;i++) { U[i]=Alfa*X[i]+Betta*Y[i]; printf("%d ",U[i] ); } getch(); } |
Цикл For: Код #include <stdio.h> #include <math.h> #include <conio.h> const double Pi=3.14; void main() { clrscr(); int i=1; double x,y,dx=((4/Pi)-(Pi/4))/20; for (x=Pi/4; x<=4/Pi; x=x+dx) {y=cos(1/x); printf("x%d=%3.2f\b ,",i,x); printf("y%d=%3.2f\n",i,y); i=i+1;} getch(); } Цикл While: #include <stdio.h> #include <math.h> #include <conio.h> const double Pi=3.14; void main() { clrscr(); int i=1; double x=Pi/4,y,dx=((4/Pi)-(Pi/4))/20; while (x<=4/Pi) {y=cos(1/x); printf("x%d=%3.2f\b ,",i,x); printf("y%d=%3.2f\n",i,y); i=i+1; x=x+dx;} getch(); } |
Лабораторные работы C++ |
1-10 11-14