代码搜索:Intro
找到约 4,804 项符合「Intro」的源代码
代码结果 4,804
www.eeworm.com/read/363449/9950789
cpp intro15.cpp
// INTRO15.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int your_number;
cout > your_number;
if (your_nu
www.eeworm.com/read/363449/9950791
cpp intro26.cpp
// INTRO26.CPP--Example from Chapter 3, "An Introduction to C++"
#include
void showval(void);
int main()
{
int mainvar = 100;
showval();
cout
www.eeworm.com/read/363449/9950797
cpp intro16.cpp
// INTRO16.CPP--Example from Chapter 3, "An Introduction to C++"
#include
#include
#include
int main()
{
char cmd;
cout
www.eeworm.com/read/363449/9950804
cpp intro10.cpp
//INTRO10.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int val;
cout
www.eeworm.com/read/363449/9950813
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/363449/9950818
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/363449/9950823
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/363449/9950827
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/363449/9950829
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/363449/9950830
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++