代码搜索:Intro
找到约 4,804 项符合「Intro」的源代码
代码结果 4,804
www.eeworm.com/read/462821/7195403
cpp intro10.cpp
//INTRO10.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int val;
cout
www.eeworm.com/read/462821/7195407
cpp intro23.cpp
// INTRO23.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int warning = -1;
int get_status(void)
{
return warning;
}
int main()
{
int count = 10;
www.eeworm.com/read/462821/7195410
cpp intro25.cpp
//INTRO25.CPP--Example from Chapter 3, "An Introduction to C++"
#include
#include
#include
int main()
{
int i;
char text[80];
cout
www.eeworm.com/read/462821/7195412
cpp intro11.cpp
// INTRO11.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
char one_char;
cout > one_char;
cout
www.eeworm.com/read/462821/7195414
cpp intro2.cpp
// INTRO2.CPP--Example from Chapter 3, "An Introduction to C++"
// INTRO2.CPP calculates a sales slip.
#include
float tax (float) ;
int main()
{
float purchase, tax_amt, total
www.eeworm.com/read/462821/7195415
cpp intro32.cpp
//INTRO32.CPP--Example from Chapter 3, "An Introduction to C++"
#include
#include
struct planet {
char name[10];
float distance;
float radius;
};
planet mars;
www.eeworm.com/read/462821/7195416
cpp intro28.cpp
// INTRO28.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
float hours[52];
int week;
// Initialize the array
for (week = 0; week < 52; week++
www.eeworm.com/read/462821/7195420
cpp intro33.cpp
//INTRO33.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int intvar = 10;
int *intptr;
intptr = &intvar;
cout
www.eeworm.com/read/462821/7195421
cpp intro18.cpp
// INTRO18.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int number= 1; // Number entered by user
int total = 0; // Total of
www.eeworm.com/read/462821/7195422
cpp intro14.cpp
// INTRO14.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int your_number;
cout > your_number;
if (your_n