代码搜索:Intro
找到约 4,804 项符合「Intro」的源代码
代码结果 4,804
www.eeworm.com/read/363449/9950746
cpp intro1.cpp
//INTRO1.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int bushels;
float dollars, rate;
cout
www.eeworm.com/read/363449/9950756
cpp intro27.cpp
// INTRO27.CPP--Example from Chapter 3, "An Introduction to C++"
#include
#include
void tally(void);
int main()
{
while ( getch() != 'q')
tally();
return 0;
www.eeworm.com/read/363449/9950764
cpp intro12.cpp
// INTRO12.CPP--Example from Chapter 3, " An Introduction to C++"
#include
#include
int main()
{
int one_char;
cout
www.eeworm.com/read/363449/9950768
cpp intro6.cpp
// INTRO6.CPP--Example from Chapter 3, "Introduction to C++"
#include
int main()
{
int i = 101, j = 59, k = 0;
int m = 70, n = 85, p = 5;
int q = 39, r = 110, s = 11;
www.eeworm.com/read/363449/9950770
cpp intro7.cpp
// INTRO7.CPP--Example from Chapter 3, " An Introduction to C++"
#include
int main()
{
float result;
result = 1.0 + 2.0 * 3.0 / 4.0;
cout
www.eeworm.com/read/363449/9950774
cpp intro20.cpp
// INTRO20.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int ascii_val;
for (ascii_val = 32; ascii_val < 256; ascii_val++)
{
cout
www.eeworm.com/read/363449/9950778
cpp intro13.cpp
// INTRO13.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int first, second;
cout > first >> second;
cout
www.eeworm.com/read/363449/9950781
cpp intro8.cpp
//INTRO8.CPP--Example from Chapter 3, " An Introduction to C++"
#include
int main()
{
int val = 1;
cout
www.eeworm.com/read/363449/9950785
cpp intro21.cpp
// INTRO21.CPP--Example from Chapter 3, "An Introduction to C++"
#include
int main()
{
int number, total;
for (number = 1, total = 0; number < 11; total += number,
number++);
www.eeworm.com/read/363449/9950787
cpp intro35.cpp
//INTRO35.CPP--Example from Chapter 3, "An Introduction to C++"
#include
void swap(int *, int *); // This is swap's prototype
int main()
{
int x = 5, y = 7;
swap(&x, &y);