Главная » Статьи » Информация |
Лабораторные работы C++
Цикл 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: [code]s[/code] | |
Просмотров: 681 | Рейтинг: 0.0/0 |
Всего комментариев: 0 | |