дано вещественное число- цена 1 кг конфет. вывести стоимость 1.2,1.4...,2 кг конфет. в с++
#include<stdio.h>
#include<iostream.h>
#include<conio.h>
int main()
{
double p1,c;
clrscr();
cout<<"Введите стоимость 1 кг конфет: "
cin>>p1;
cout<<"\n ";
c:=1.2;
while(c<>2.0)
cout<<"Цена "<<c<<" кг конфет:"<<c*p1<<"\n";
c+=0.2;
}
getch();
return 0;
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include<stdio.h>
#include<iostream.h>
#include<conio.h>
int main()
{
double p1,c;
clrscr();
cout<<"Введите стоимость 1 кг конфет: "
cin>>p1;
cout<<"\n ";
c:=1.2;
while(c<>2.0)
{
cout<<"Цена "<<c<<" кг конфет:"<<c*p1<<"\n";
c+=0.2;
}
getch();
return 0;
}