博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
留学生题目
阅读量:6186 次
发布时间:2019-06-21

本文共 1795 字,大约阅读时间需要 5 分钟。

1 #include 
2 #include "stdlib.h" 3 using namespace std; 4 5 void Show() 6 { 7 cout<<"CIS 25 – C++ Programming \n"; 8 cout<<"Laney College \n"; 9 cout<<"Your Name \n\n"; 10 cout<<"Assignment Information -- \n"; 11 cout<<" Assignment Number: Lab 03, \n"; 12 cout<<" Coding Assignment -- Exercise #1 \n"; 13 cout<<" Written by: Your Name \n"; 14 cout<<" Submitted Date: Due Date \n"; 15 } 16 17 18 void Calculate() 19 { 20 int size; 21 int tmp; 22 int i,j,k; 23 24 cout << "\nHow many intergers? "; 25 cin >> size; 26 27 int *ptrPtr = new int[20]; 28 29 for (i = 0; i < size; i++) { 30 31 cout << "Enter integer #"<< i + 1 << ": "; 32 cin >> tmp; 33 34 *(ptrPtr + i) = tmp; 35 } 36 37 cout<<"\nThe original array:\n"; 38 for (j = 0; j < size; j++) 39 cout << " " << *(ptrPtr + j)<<"\n"; 40 cout<<"\nCalling extractUncommonDigitYourName() –\n\n"; 41 cout<<"Displaying after returning the array -- The uncommon digits:\n"; 42 43 44 // cout<
<
=1){120 for( i=dh;i
=0&&*(last_data+j)>temp){124 *(last_data+j+dh)=*(last_data+j);125 j-=dh;126 }127 *(last_data+j+dh)=temp;128 }129 dh/=2;130 }131 // for(i=0;i
<<*(last_data+i)<<" ";132 // cout<
>option;163 if(option!=2&&option!=1)164 {165 cout<<"\n WRONG OPTION!\n\n";166 }else {167 switch(option)168 {169 case 1:170 Calculate();171 break;172 case 2:173 cout<<"\n Fun Exercise ..."<

 

转载于:https://www.cnblogs.com/minmsy/p/5218613.html

你可能感兴趣的文章
L17 怎么向应用程序商店提交应用
查看>>
Oracle中Clob类型处理解析
查看>>
VB.NET总结
查看>>
C#正则表达式
查看>>
05 Oracle process
查看>>
强力重置ASP.NET membership加密后的密码![转]
查看>>
BottomSheets源码解析
查看>>
.net4.0注册到IIS ,重新注册IIS ,iis注册
查看>>
Sharepoint学习笔记—其它—如何知道某个Sharepoint环境的安装类型
查看>>
【转】【矩阵】坐标的矩阵变换
查看>>
Linux /proc、/dev Principle
查看>>
php操作mongodb中的ISODate格式日期
查看>>
hdu 3183 A Magic Lamp (rmq)
查看>>
MVC模式下如何实现RegisterStartupScript等功能
查看>>
集合(三)CopyOnWriteArrayList
查看>>
sql连接查询
查看>>
UIWebView 加载网页、文件、 html
查看>>
在Silverlight程序中使用Thread一个很容易被忽略的问题
查看>>
LLBL Gen 元数据编程 LLBL Gen Meta-data Programming
查看>>
第五节 21类型化DataSet
查看>>