1.2 C++快速入門

1.1 信息在計算機中的表示

1.2 C++快速入門

新標準C++程序設計 郭煒 編著ios

第一個C++程序

#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
	printf("Hello, world!");
	return 0;
}
//Result: Hello, world!

第二個C++程序:輸出更多

#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
	int a  = 3;
	printf("I have %d dollars.\n", a);
	printf("I want to buy:\na book.");
	return 0;
}
/* result is as follows:
I have 3 dollars.
I want to by:
a book.
*/

第三個C++程序:如何輸入

輸入兩個整數,輸出它們的和(NOI. POJ 7883)spa

#include <cstdio>
#include <iostream>
using namespace std;
int main()
{
	int a, b;
	scanf("%d%d", &a, &b);
	printf("%d", a+b);
	return 0;
}
/** Input & Output is as follows:
3 4 <Enter>
7
**/

第四個C++程序:輸入字符

#include <cstdio>
#incluce <iostream>
int main()
{
	char a, b, c;
	scanf("%c%c%c", &a, &b, &c);
	printf("%c%c%c", a, b, c);
	return 0;
}
/* I & O:
x y
x y
*/
相關文章
相關標籤/搜索