人民币符号输入的几种方法
-
直接利用键盘输入
¥ shift+4 键盘第二行数字,中文输入法) ¥ Alt+41892 右侧小键盘数字,GBK,全角) ¥ Alt+0165 右侧小键盘数字,Unicode)
Jetbrains全家桶1年46,售后保障稳定
-
C/C++输出
#include<iostream> // 只用C语言的话,可将这两行换为 using namespace std; // #include<stdio.h> // 人名币符号输出 int mainvoid) { // 1.直接输出 printf"¥\n"); cout << "¥" << endl; // C++方式 // 2.¥是双字节符号,接连输出单字节 printf"%c%c\n", -93, -92); // 3.在打印机上输出,可以显示出¥ printf"Y\b-\n"); return 0; }