标签:get main 控制台应用程序 输出 ++ 一个 splay audio c++
1 // 05-字符.cpp: 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <iostream> 6 using namespace std; 7 8 int main() 9 { 10 //‘‘里的都是字符 11 char c = ‘a‘; 12 char c2 = ‘ ‘; 13 char c3 = ‘2‘; //字符2对应数字2 14 char c4 = ‘\n‘; 15 16 cout << c << c2 << endl; 17 int a = ‘a‘; //每个字符都对应一个数字。ASCII码表就是用来表示每个字符对应的数字的。 18 cout << a << endl; 19 cout << c3 << endl; 20 int b = ‘2‘;//字符2转化为整型后的值 并不是数字2,而是另外一个数字。 21 cout << b << endl; 22 cout.put(‘K‘); //cout.put()可以单独输出一个字符,只能输出一个,也可以是数字,。 23 cin.get(); 24 25 char d = 97; //同样的将数字赋值给一个字符就会转化成数字对应的字符,97对应字符a。 26 cout << d << endl; 27 28 int t; 29 cin >> t; 30 return 0; 31 }
标签:get main 控制台应用程序 输出 ++ 一个 splay audio c++
原文地址:https://www.cnblogs.com/uimodel/p/9346440.html