برنامه ای به زبان ++C بنویسید که با استفاده از یک حلقه و عبارت t\ جدول زیر را نمایش دهد.
N 10*N 100*N 1000*N
1 10 100 1000
2 20 200 1000
3 30 300 2000
4 40 400 3000
5 50 500 4000
-----------------------------------------------------------------------------------------------------------
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int n = 0;
cout << "N\t10 * N\t100 * N\t1000 * N\n\n";
while( ++n <= 5 )
cout << n << '\t' << 10 * n << '\t' << 100 * n
<< '\t' << 1000 * n << '\n';
cout << endl;
getch();
return 0;
}
برنامه ای بنویسید که 10 عدد را گرفته و ءشط ان ها را محاسبه کند.
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int counter = 0, number, largest;
cout << "Enter the first number: ";
cin >> largest;
while( ++counter < 10 ) {
cout << "Enter the next number : ";
cin >> number;
if(number > largest)
largest = number;
}
cout << "Largest is " << largest << endl;
getch();
return 0;
}
میزان مصرف سوخت خودرو برای رانندگان اهمیت دارد. راننده ای مقدار گاز مخزن خودروی خود را به همراه مقدار مسافتی که پیموده است. برنامه ای به زبان ++C بنویسید که مقدار مصرف گاز را به گالن برای هر مخزن و مقدار مسافت را به مایل از کاربر گرفته و نسبت مایل به گالن برای هر مخزن را برای هر بار محاسبه کردهو نمایش دهد. برنامه پس از پردازش تمام اطلاعات ورودی باید نسبت مایل به گالن کل را برای تمام مخزن محاسبه و سپس نمایش دهد.
Enter the gallons used (-1 to end): 12.8
Enter the miles driven: 287
The miles / gallon for this tank was 22.421875
Enter the gallons used (-1 to end): 10.3
Enter the miles driven: 200
The miles / gallon for this tank was 19.417475
Enter the gallons used(-1 to end): 5
Enter the miles driven: 120
The miles / gallon for this tank was 24.000000
Enter the gallons used (-1 to end): -1
The overall average miles/gallon was 21.601423
-------------------------------------------------------------------------------------------------------
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
double gallons, miles, totalGallons = 0.0,
totalMiles = 0.0, average;
cout << "Enter the gallons used (-1 to end): ";
cin >> gallons;
while(gallons != -1.0) {
totalGallons += gallons;
cout << "Enter the miles driven: ";
cin >> miles;
totalMiles += miles;
cout << "The Miles / Gallon for this tank was "
<< miles / gallons
<< "\n\nEnter the gallons used (-1 to end): ";
cin >> gallons;
}
average = totalMiles / totalGallons;
cout << "\nThe overall average Miles/Gallons was "
<< average << endl;
getch();
return 0;
}
برنامه ی زیر چه چیزی را چاپ می کند؟
#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
int y, x = 1, total = 0;
while(x <= 10) {
y = x * x;
cout << y << endl;
total += y;
++x;
}
cout << "Total is " << total << endl;
getch();
return 0;
----------------------------------------------------------------------------------------------------------------------------------
1
4
9
16
25
36
49
64
81
100
Total is 385
}
با استفاده از تکنیک هایی که در این فصل اموختید برنامه ای بنویسید که توان 2 و توان 3 اعداد بین 0 تا 10 را محاسبه و به صورت جدول زیر نمایش دهد.
number square cube
o 0 0
1 1 1
2 4 8
. . .
<include<iostream#
#include<conio.h>
using namespace std;
int main()
{
int num = 0;
cout << "\nnumber\tsquare\tcube\n"
<< num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
num = num + 1;
cout << num << '\t' << num * num << '\t' << num * num * num << "\n";
getch();
return 0;
}